In css, I can do comments like this
/* test */
p {
color: red;
}
/* test2 */
h1 {
color: red;
}
/* test3 */
h2 {
color: red;
}
but now what if I wanted to comment test2 and test3. This doesn't work.
/* test */
p {
color: red;
}
/*
/* test2 */
h1 {
color: red;
}
/* test3 */
h2 {
color: red;
}
*/
Does anyone know how to do it?
Thanks.