2

我正在浏览 css 选择器,但无法真正了解或只是不了解。

如果我有这个 HTML:

<h1><strong>text</strong></h1>
<h2><strong>text</strong></h2>
<h3><strong>text</strong></h3>

有没有一种方法可以对每个强标签应用不同的样式而不给每个标签一个类。

就像是:

strong[h1] {}
strong[h2] {}

..

或者?

谢谢 :)

4

2 回答 2

7

采用

h1 strong { }
h2 strong { }
h3 strong { } 
于 2012-10-25T05:42:15.303 回答
1

请试试这个,你也可以在标签内尝试更多的标签,按照你想要的例子向下钻取

ul li a { font-family: Arial, Sans-Serif }

h1 strong {color:red}
h2 strong {color:green}
h3 strong {color:blue} 
于 2012-10-25T05:51:20.857 回答