闲暇时间学习学习HTML相关知识————HTML三种样式插入方法!
外部样式表
- 外部样式
1
<link rel="stylesheet" type="text/css" href="xxx.css">
内部样式表
- 内部样式
1
2
3
4
5
6
7
8<style type="text/css">
body {
background-color:red
}
p {
margin-left:20px
}
</style>
内联样式表
- 内联样式
1
<p style="color:red">
最后更新: 2018年09月26日 11:32