示例 1 : 

注释

注释

以/* 开始

以*/结束

被注释掉的文字会自动隐藏



<style>
/*设置所有的p元素中的内容为红色*/
p{
color:red;
}
</style>

<p>红色的p</p>


CSS 04 注释_CSS