相同高度我試圖將一個元素放在元素的左側,但是我似乎無法使它們的高度相同並與每個元素對齊其他。跨度似乎總是定位更高一點。如何使<span>高度與<input type =「text」>
任何人有任何想法?
閃耀*
編輯:HTML部分
<label for="name">Username: </label>
<input type="text" name="name" id="name" value="" maxlength="15"/>
<span id="box" style="display:none"></span>
CSS
span.box{
position:absolute;
width:100px;
margin-left:20px;
border:1px;
padding:2px;
height: 16px;
}
input.name {
width: 115px;
height: 14px;
}
請把你的代碼的一部分,該解決方案依賴於標籤的類型變動時 – 2010-11-18 02:10:11
如果你想標記輸入字段,嘗試標籤標籤(http://www.w3schools.com/tags/tag_label.asp) – 2010-11-18 02:13:41