内联样式
适用范围:特殊的样式需要应用到个别样式
<p style="color:blue;margin-left:20px;">这是一个段落。</p>
内部样式表
适用范围:单个文件需要特别的样式
<head>
<meta charset="UTF-8">
<title>菜鸟教程</title>
<style type="text/css">
body {background-color:yellow;}
p {color:blue;}
</style>
</head>
外部引用(使用外部CSS文件)
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>






网友评论