标签:
- <style> : 样式资源引用
- <link> : 资源引用
属性:
- rel = "stylesheet" :外部样式表
- type = "text/css" : 引入文档的类型
- margin-left : 边距
三种样式表插入方法:外
一 , 部样式表:
- <link rel = "stylesheet" type = "text/css" href = "mystyle.css">
二 , 内部样式表:
- <style type = "text/css">
- body {background-color:red}
- p {margin -left : 20px}
- </style>
三 , 内联样式表:
- <p style = "color:red">