CSS全称是 Cascading Style Sheets, 层叠样式表
CSS的引用:
内联样式:<h1 style="color:red;font-size:20px></h1>
内部样式:<style>
                             h1{
color: red;
font-size: 20px;}
</style>
外部样式:
<head>
<link rel="stylesheet" href="a.css">
</head>
<style>
@import url("a.css") 或@import "a.css"
</style>
选择器类型:
1.基础选择器

2.组合选择器

3.属性选择器

4.伪类选择器



5.伪元素选择器

