gpt4 book ai didi

css - 内部样式表不适用于 h3 标题

转载 作者:太空宇宙 更新时间:2023-11-03 21:45:37 24 4
gpt4 key购买 nike

<style type="text/css">
#h1 {
color: #F60;
}
#h3 {
text-align: center;
margin-bottom: -20px;
}
</style>

我的内部样式表适用于编号为 1 的所有标题。

但是对于标题 3,内部样式表中应用的样式不适用于我编码中的 h3。

<h3>Internet Addiction</h3>

最佳答案

   h1 { color:#F60; }  -> <h1>
.h1 {...} -> <any-element class="h1"> (btw. using class name/id h1 is confusing)
#id {...} -> <any-element id="h1">

您对 ID 使用井号 (#),对类使用点 (.)。记住ID是唯一的*,而class可以多次使用

*即使您将相同的 id 分配给两个元素,浏览器也会应用适当的样式,但不要那样做。

关于css - 内部样式表不适用于 h3 标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20827244/

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