在CSS文件中,我有2种格式化body元素的方法。 如何评论选择体型1?
/* body style 1 */
body {
background-color: #E6F6F6; /* color 1 */
}
/* I want to comment all from here to end */
/*
/* body style 2 */
body {
background-color: #F6F6F6; /* color 2 */
} /* this right bracket is not commented out */
p {
font-size: 10px;
}
*/
答案 0 :(得分:2)
CSS注释一直运行到* /的第一个实例。你不能嵌套CSS评论。
你可以做这样的事情,但它很乱:
/* body style 1 */
body {
background-color: #E6F6F6; /* color 1 */
}
/* I want to comment all from here to end */
/*
/* body style 2 */
/*body {
background-color: #F6F6F6; /* color 2 */
/* } /* this right bracket is not commented out */
p {
font-size: 10px;
}
*/
答案 1 :(得分:0)
删除/*color 2*/
评论及其他评论,然后就可以了
/* body style 1 */
body {
background-color: #E6F6F6;
}
/* I want to comment all from here to end */
/* body style 2 */
/*
body {
background-color: #F6F6F6;
}
p {
font-size: 10px;
}
*/