CSS的全称Cascading Style Sheets,层叠样式表,有三种引入方式:
- 内联样式
<h1 style="color: red; font-size: 20px;" >标题1</h1>
- 内部样式
<style type="text/css">
h1 {
color: red;
font-size: 20px;
}
</style>
<h1>标题1</h1>
- 外部样式
<head>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
优先级顺序是:
内联样式> 内部样式> 外部样式