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.
如果我有
<div role="main"> </div>
如何main使用 CSS 设置样式?或者我是否还必须添加一个 ID 或一个类<div>?
main
<div>
我建议添加一个 ID 或类。这是最跨浏览器和最有效的方式。
如果你不能这样做,那么你需要使用一个属性选择器:
div[role="main"]