sentence:
Change your comment standard. instead
.navigation{ background: red; .subnav{ background: #FFF; } .subnav2{ background: black; } }
put comments inside the block expansion:
.test { background: red; .test2{ background:#fff; } .test3 { background:#fff; } }
and you get the following output:
.test { background: red; } .test .test2 { background: #fff; } .test .test3 { background: #fff; }
will work for your needs?
source share