On this pageCSS引入方式外部样式表在 head 标签内插入:<link rel="stylesheet" type="text/css" href="./style/mystyle.css" />Copy内部样式表直接在 head 标签插入 style 标签内联样式直接在标签内的 style attribute 赋值 css 的 key-value 字符串<p style="color: red;border: black 1px solid;" >hello world</p>Copy@import