<h1>This is a heading</h1> <p>This is a paragraph.</p>
</body> </html>
行内css(内联样式)
将style属性赋予某个元素。
1 2 3 4 5 6 7 8 9
<!DOCTYPE html> <html> <body>
<h1style="color:blue;text-align:center;">This is a heading</h1> <pstyle="color:red;">This is a paragraph.</p>
</body> </html>
层叠顺序
当为某个 HTML 元素指定了多个样式时,会使用哪种样式呢?
页面中的所有样式将按照以下规则“层叠”为新的“虚拟”样式表,其中第一优先级最高:
1.行内样式(在 HTML 元素中)
2.外部和内部样式表(在 head 部分)
3.浏览器默认样式
因此,行内样式具有最高优先级,并且将覆盖外部和内部样式以及浏览器默认样式。
css内容
颜色
颜色名
赋颜色的一种方式
背景色
1 2
<h1 style="background-color:DodgerBlue;">China</h1> <p style="background-color:Tomato;">China is a great country!</p>
文本颜色
1 2 3
<h1 style="color:Tomato;">China</h1> <p style="color:DodgerBlue;">China is a great country!</p> <p style="color:MediumSeaGreen;">China, officially the People's Republic of China...</p>