Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个选择 HTML 元素,我放了一个 CSS 类
.selectbox{ padding:0.3em; }
但这在 IE 7 中不起作用。除了 IE7 之外,它在所有其他浏览器中都起作用。有人对此有修复吗?
Internet Explorer 7 不允许在select元素上设置填充。
select
这些限制在表单控件中很常见,因为它们可能使用操作系统控件元素。
一种解决方法是关闭选择边框,创建一个周围元素,并为该元素提供填充。
看看这个-
http://quirksmode.org/
IE 还需要<!DOCTYPE>在旧版本中声明。
<!DOCTYPE>