Skip to main content

CSS引入方式

外部样式表

在 head 标签内插入:

<link rel="stylesheet" type="text/css"  href="./style/mystyle.css" />

内部样式表

直接在 head 标签插入 style 标签

内联样式

直接在标签内的 style attribute 赋值 css 的 key-value 字符串

<p style="color: red;border: black 1px solid;" >hello world</p>

@import