> For the complete documentation index, see [llms.txt](https://docs.webmix.cc/html-and-css/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.webmix.cc/html-and-css/3.-css/3.2-zhu-jie.md).

# 3.2 註解

CSS 註解只有一種，以 `/*` 開頭，以 `*/` 結束。可應用於單行註解或多行註解。

```css
<head>
  <style>
    /* 單行：這是註解。 */
    /*
      多行：
      這也是註解。
    */
    p{
      color: blue;
    }
  </style>
</head>
```

**註解的用意**：給「人」看的，瀏覽器遇到註解符號，會直接跳過，並**不會顯示於網頁**上，但會顯示於「**頁面原始碼**」中。
