我有这样的css类:
.new-fld input[type="text"]{width:418px !important; margin-bottom:0px !important; height:18px !important; background-color:transparent !important; color:#FFF !important; border-bottom:1px solid #FFF; border-left:none !important; border-right:none !important; border-top:none !important; font-size:14px; /*padding:0 8px;*/}
它适用于页面上的所有输入字段。
我希望某些字段长度不同,所以我创建了另一个这样的类
.new-fld input[type="text"]{width:45px !important; margin-bottom:0px !important; height:18px !important; background-color:transparent !important; color:#FFF !important; border-bottom:1px solid #FFF; border-left:none !important; border-right:none !important; border-top:none !important; font-size:14px; /*padding:0 8px;*/}
并像这样应用它
<div class="new-fld">
<input type="text" value="+44 1793 853219" name="">
<input type="text" value="+ 44" readonly="readonly" name="Dialprefix1" id="Dialprefix1" class="dialprefix" style="text-align:right;width:45px;">
<span>*</span>
</div>
如您所见,我以文本框样式输入了宽度,但仍然无法正常工作。
但它不工作。请建议我很好的解决方案。