Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:样式主要是有默认和自定义二类, 来源不同罢了
css 元素样式来源主要有三种方式可以选择,下面将用 h1 标签中的文字颜色设置成红色进行举例:
1、 行内样式(内联样式)
<h1 style="color: red;">行内样式</h1>
<html>
<head>
<title>内部样式</title>
<style type="text/css">
h1{
color: red;
}
</style>
</head>
<body>
<h1>内部样式</h1>
</body>
</html>
<html>
<head>
<title>外部样式</title>
<link rel="stylesheet" type="text/css" href="">
</head>
<body>
<h1>外部样式</h1>
</body>
</html>
案例 | id | class | 标签 | 优先级 |
---|---|---|---|---|
div span h1 | 0 | 0 | 3 | 0 0 3 |
div .class .head | 0 | 2 | 0 | 0 2 0 |
#logo | 1 | 0 | 0 | 1 0 0 |