gpt4 book ai didi

html - css 选择器 : difference between "body h1", "body .h1"和 "body.h1"

转载 作者:技术小花猫 更新时间:2023-10-29 11:48:50 30 4
gpt4 key购买 nike

我试图了解此 CSS 规则将应用于哪些元素:

body h1, body .h1 {
font-family: 'Open Sans', sans-serif !important;
color: inherit;
text-rendering: optimizelegibility;
}

我理解 body.h1 但不理解 body h1 也不理解 body.h1

最佳答案

body h1将解决所有 <h1> -<body> 中的元素-元素:

<body>
<h1>This one</h1>
<div>
<h1>And also this one</h1>
</div>
</body>

body .h1将选择 body 内具有 class 的所有元素 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>

关于html - css 选择器 : difference between "body h1", "body .h1"和 "body.h1",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19931351/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com