css

css 基础: 层叠样式表 (Cascading Style Sheets)

编写位置

行内样式

  • 写在标签的 style 属性中,(又称:内联样式)
    1
    <h1 style="color:red;font-size:60px;">hello</h1>

内部样式

  • 写在html 页面内部,将所有的 CSS 代码提取出来,单独放在