【发布时间】:2015-09-04 10:19:52
【问题描述】:
在css中,我可以做这样的cmets
/* test */
p {
color: red;
}
/* test2 */
h1 {
color: red;
}
/* test3 */
h2 {
color: red;
}
但是现在如果我想评论 test2 和 test3。这不起作用。
/* test */
p {
color: red;
}
/*
/* test2 */
h1 {
color: red;
}
/* test3 */
h2 {
color: red;
}
*/
有人知道怎么做吗?
谢谢。
【问题讨论】: