答案 0 :(得分:1)
请勿使用
设置标注的最小宽度,设置选择框的宽度
例如:
风格:
.the-d-box{
clear:both;
margin:0 10px;
}
.the-d-box label,.the-d-box select{
float:left;
}
.the-d-box label{
width:120px;
}
.the-d-box select{
width:150px;
}
HTML:
<div class="the-d-box">
<label>Info</label>
<select>..</select>
</div>