概念
·Cascading Style Sheet层叠样式表
·定义页面中的表现
历史
1996 css1
1998 css2
2001 css3
2007 css2.1
引入
·外部样式表
<head>
<link rel="stylesheet" href="xx.css">
</head>
·内部样式表
<head>
<style>
</style>
</head>
·内嵌样式
<p style="color:red;margin-left:20px;">
this is a paragraph
</p>