4

我在div

高度是自动的div,但不幸的是searchbar_home div高度没有增加以包围我的输入框和提交按钮。

这是我的 HTML

  <div id='container'>    
    <div id="content">
        <h1 class="home_title">English to Malayalam</h1>
        <div id="searchbar_home">
            <input type="text" />
            <input type="submit" />
        </div>
    </div>
    <footer>
        <p>Copy right only for me ;)</p>
    </footer>

  </div>​

我的 CSS:

#searchbar_home{
    margin: 0 auto 20px;
    padding: 10px;
    height: auto;
    width: 80%;
    background: #F5F5F5;
    border: 1px solid #D8D8D8;

    border-radius: 6px;
}
#searchbar_home:after{
    clear: both;
}
#searchbar_home input[type="text"]{
    height: 35px;
    float: left;
    width: 90%;
    border: 1px solid #CCCCCC;
    border-right: none;

    border-radius: 6px 0 0 6px;
}
#searchbar_home input[type="submit"]{
    float: left;
    background: #414141;
    height: 40px;
    width: 50px;
}​

这是jsfiddle 上的演示。

这里是图像演示

如何让 `searchbar_home``div' 增加大小?

4

2 回答 2

16

我假设你已经浮动了你的input. 要使div尺寸适合它,overflow:auto;请为其样式添加规则。

于 2012-09-08T23:36:39.897 回答
3

啊,您尝试使用 :after 技巧来清除浮动?

从您的代码:

    #searchbar_home:after{
         clear: both;
    }

您实际上需要给它一些内容并使其成为块项目而不是内联项 -

    #searchbar_home:after{
         content:'';
         display:block;
         clear: both;
    }

应该管用。

于 2012-09-08T23:56:06.393 回答