我正在浏览css选择器,但无法真正了解或只是没有得到它。
如果我有这个HTML:
<h1><strong>text</strong></h1>
<h2><strong>text</strong></h2>
<h3><strong>text</strong></h3>
有没有办法为每个强标签应用不同的样式而不给每个标签一个类。
类似的东西:
strong[h1] {}
strong[h2] {}
...
左右?
谢谢:)
答案 0 :(得分:6)
使用
h1 strong { }
h2 strong { }
h3 strong { }
答案 1 :(得分:1)
请尝试此操作,您也可以尝试在标记内部使用此标记,然后向下钻取 想要的例子
ul li a { font-family: Arial, Sans-Serif }
h1 strong {color:red}
h2 strong {color:green}
h3 strong {color:blue}