有没有人知道为什么我的Safari没有在选择列表中填充?在FF工作正常,请告诉我该怎么办doctype有什么问题吗?
码:
<select style="padding-left:15px">
<option>male></option>
<option>female></option>
</select>
我使用以下doctype;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
解决方法@H_301_12@
即使W3规范不允许在选择框中填充,无论什么原因webkit浏览器(Safari,Chrome)都
不支持它.相反,您可以
删除填充左边,并使用文本缩进代替,为选择框宽度
添加相同的金额.
从你的例子你的评论:
<select id="sexID" name="user[sex]"
style="border:1px solid #C1272D;
width:258px; // 243 + 15px
text-indent:15px;
height:25px;
color:#808080;">
原文链接:https://www.f2er.com/html/231159.html