Comments - CSS: Cascading Style Sheets 编辑
A CSS comment is used to add explanatory notes to the code or to prevent the browser from interpreting specific parts of the style sheet. By design, comments have no effect on the layout of a document.
Syntax
Comments can be placed wherever white space is allowed within a style sheet. They can be used on a single line, or traverse multiple lines.
/* Comment */
Examples
/* A one-line comment */
/*
A comment
which stretches
over several
lines
*/
/* The comment below is used to
disable specific styling */
/*
span {
color: blue;
font-size: 1.5em;
}
*/
Notes
The /* */
comment syntax is used for both single and multiline comments. There is no other way to specify comments in external style sheets. However, when using the <style>
element, you may use <!-- -->
to hide CSS from older browsers, although this is not recommended. As with most programming languages that use the /* */
comment syntax, comments cannot be nested. In other words, the first instance of */
that follows an instance of /*
closes the comment.
Specifications
See also
- CSS Key Concepts: CSS syntax, at-rule, comments, specificity and inheritance, the box, layout modes and visual formatting models, and margin collapsing, or the initial, computed, resolved, specified, used, and actual values. Definitions of value syntax, shorthand properties and replaced elements.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论