创建一个名为“special”的类选择器。
在“special”类中添加值为“blue”的颜色属性。
<!DOCTYPE html>
<html>
<head>
<style>
@(8) @(1)
@(10);
@(1)
</style>
</head>
<body>
<p class="special">My paragraph</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
.special {
color:blue;
}
</style>
</head>
<body>
<p class="special">My paragraph</p>
</body>
</html>