1. 外部样式表

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

2. 内部样式表

<head>
  <style type="text/css">
    p {
      margin: 10px;
    }
  </style>
</head>

3. 内嵌样式(可在动态效果中同 JavaScript 一同使用)

<p style="color: red">Sample Text</p>

相关文章:

  • 2021-12-24
  • 2021-07-01
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
猜你喜欢
  • 2022-01-05
  • 2022-01-19
  • 2021-09-13
  • 2022-12-23
  • 2022-01-05
  • 2022-02-15
相关资源
相似解决方案