css 的注释怎么写

html-css07

css 的注释怎么写,第1张

CSS中的注释就是:/*...*//* 段落样式 */p{text-align: center/* 居中显示*/color: blackfont-family: arial} 这段代码放入STYLE或样式表中是可以的。

css中可以使用/**/注释

如果在<style>中可以用<!---->将整个style注释

/*

这里是css的注释

*/

#id1{

color:red

}