我试图了解这个css规则应用于哪些元素:
body h1, body .h1 {
font-family: 'Open Sans', sans-serif !important;
color: inherit;
text-rendering: optimizelegibility;
}
我理解body.h1
但不理解body h1
或body .h1
答案 0 :(得分:6)
body.h1
会选择body
元素,如果它有h1
类。
<body class='h1'>this one</body>
)body h1
将选择正文中的所有h1
元素。
<body><h1>this one</h1></body>
)h1
做同样的事情,因为h1
元素唯一的位置(如果你的HTML格式正确)是身体)body .h1
将选择正文中包含h1
类的所有元素。
<body><div class='h1'>this one</div></body>
)因此,body h1, body .h1
会选择:
<body>
<h1>this element</h1>
<div class='h1'>and this one too</div>
</body>
答案 1 :(得分:6)
body h1
将解决<h1>
- 元素中的所有<body>
- 元素:
<body>
<h1>This one</h1>
<div>
<h1>And also this one</h1>
</div>
</body>
body .h1
将选择身体内类 h1
的所有元素:
<body>
<h1 class="h1">This one</h1>
<div class="h1">And also this one</div>
</body>
body.h1
在拥有课程<body>
时,最终将为h1
- 元素本身设置样式:
<body class="h1"></body>
答案 2 :(得分:0)
body.h1
选择body
类h1
。body h1
选择h1
元素内任何位置的所有body
元素。body .h1
在h1
元素中选择类body
的所有类型的所有元素。 CSS中的选择器定位所有h1
元素以及任何类型的所有元素h1
,这些元素位于标记的body
内。
答案 3 :(得分:0)
正文h1
它会找到你体内的所有h1
正文.h1
它会在您的身体中找到所有类别为h1的元素
答案 4 :(得分:0)