我遇到的問題是div高度不增長,所以我的標籤阻止了我的頁面上的其他元素。我知道我可以設定div的高度。但我想自動增長。我怎樣才能做到這一點?如何設置div高度自動增長與內容有填充樣式
謝謝!
<div id="div">
<asp:Button ID="btn" runat="server" Text="Button" />
<asp:Label ID="lbl" runat="server" Text="Label" />
</div>
#lbl
{
padding: 1em;
}
#div
{
//What I should do here?
}
我發現我必須設置爲#div填充我的標籤的頭部和尾部 – etlds 2012-02-24 16:14:28