个性化阅读
专注于IT技术分析

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 srcmini02.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>

输出:

你好srcmini02.com

该语句使用CSS设置样式。

CSS注释将被浏览器忽略, 并且不会显示在输出中。

赞(0)
未经允许不得转载:srcmini » CSS注释

评论 抢沙发

评论前必须登录!