CSS - 引入方法

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>
posted @ 2018-04-16 11:59  Rocin  阅读(147)  评论(0编辑  收藏  举报