这种在样式表中声明样式的方式跨浏览器兼容吗?
我目前正在使用这种在样式表中声明多种样式的方式:
#elem1, #elem2{
float:right;
}
.elem3, .elem4{
float:left;
}
#elem1, #elem2 h2{
font-size:20px;
}
我想知道主要浏览器是否支持这种方式,甚至IE6?
I am currently using this way of declaring multiple styles in a stylesheet:
#elem1, #elem2{
float:right;
}
.elem3, .elem4{
float:left;
}
#elem1, #elem2 h2{
font-size:20px;
}
I wonder if this is supported by major browsers, even IE6?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,确实如此。这是为多个选择器声明样式的一种非常标准的方式,并且长期以来一直受到所有主要浏览器(甚至 IE6)的支持。
Yes, it sure is. This is a pretty standard way of declaring styles for multiple selectors and has been supported by all major browsers (even IE6) for a long time.
是的。据我所知,如果你尝试给一个 HTML 对象提供多个类,IE6 就会陷入困境,它只会读取最后一个类并相应地应用样式。
Yup. As far as I know, the place where IE6 caves is if you try to give a single HTML object multiple classes, where it will only read the last class and apply styles accordingly.