有人能給我提供一個示例,說明如何設置我的文本框的高度以適應伴隨它的標籤的高度?正如你所看到的,我在一個字段集中有我的標籤和文本框。我的標籤文本可以是可變的,所以我不確定是否有CSS屬性來處理這個問題,或者它必須被動態設置。我還應該提到,當頁面加載時,我的標籤即將填充。我正在使用Asp.net。將文本框的高度設置爲標籤文本的高度
<fieldset class="input">
<ol>
<li>
<asp:Label id="label1" AssociatedControlID="textField1" runat="server">Provide a brief description of the process used to build, monitor and maintain investment portfolios for this strategy.</asp:Label>
<textarea ID="textField1" runat="server" cols="40" rows="4"></textarea>
</li>
<li>
<asp:Label id="label2" AssociatedControlID="textField2" runat="server">What market anomaly or inefficiency are you trying to capture?</asp:Label>
<textarea ID="textField2" runat="server" cols="40" rows="4"></textarea>
</li>
</ol>
</fieldset>
fieldset.input
{
float:none;
clear:both;
width:97%;
border:1px solid #C0CED7;
padding:0;
}
fieldset.input ol
{
list-style:none;
padding: 1em 1em 0;
}
fieldset.input li
{
float:left;
clear:left;
width:100%;
padding-bottom:1em;
}
fieldset.input label
{
float:left;
width:15em;
margin-right:3em;
text-align:left;
}
你能後的HTML呢? – Wex
你是怎麼發佈html的?我一直在嘗試,但它不斷地解釋它,而不是發佈原始代碼。 – mseg
粘貼HTML,全選,然後點擊上面的「{}」按鈕。 :) – Kaloyan