CSS 类选择器,html(css) class如何使用?
在 CSS 中,类选择器以一个点号显示:
.center{text-align: center}
.red{color:red;}
.div1 .div2{color:yellow}
.div3.div4{color:green;}
在上面的例子中,所有拥有 center 类的 HTML 元素均为居中。
在下面的 HTML 代码中,h1 和 p 元素都有 center 类。这意味着两者都将遵守 ".center" 选择器中的规则。
This heading will be center-aligned
This paragraph will also be center-aligned.
代码展示:
效果展示:
赞 (0)