css-3.基本选择器之2.类选择器

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>

.one{
color: #2f5d8c;
}
.two{
color: #81488c;
}
.three{
color: red;
}
</style>

</head>
<body>
<h1 class="one">标题1</h1>
<h1 class="two">标题2</h1>
<h1 class="three">标题3</h1>

<!--类选择器的格式 .class的名称{}
好处,可以多个标签归类,是同一个class,可以复用 -->

</body>
</html>
上一篇:vue 使用mock.js


下一篇:Codeforces Round #741 (Div. 2), problem: (D1) Two Hundred Twenty One (easy version), 1700