CSS注释

通常写CSS注释来解释你的代码。这对于阅读你的代码的用户非常有帮助, 以便他们可以轻松理解代码。

浏览器将忽略注释。
注释是单行或多行语句, 并写在/*… … … … */中。

< !DOCTYPE html> < html> < head> < style> p { color: blue; /* This is a single-line comment */ text-align: center; } /* This is a multi-line comment */ < /style> < /head> < body> < p> Hello srcmini.com< /p> < p> This statement is styled with CSS.< /p> < p> CSS comments are ignored by the browsers and not shown in the output.< /p> < /body> < /html>

输出:
你好srcmini.com
该语句使用CSS设置样式。
【CSS注释】CSS注释将被浏览器忽略, 并且不会显示在输出中。

    推荐阅读