PHP Classes

Parsing issue

Recommend this page to a friend!

      PHP CSS manager  >  All threads  >  Parsing issue  >  (Un) Subscribe thread alerts  
Subject:Parsing issue
Summary:Parsing issue
Messages:1
Author:Maier Karl
Date:2015-08-25 10:45:11
 

  1. Parsing issue   Reply   Report abuse  
Picture of Maier Karl Maier Karl - 2015-08-25 10:45:11
if a media query contains more as 2 classes parsing faults.
the nested {{ }} will close after the 2nd class entry.
this
-------------------------
@media test {

.test1 { display:block }
.test2 { display:block }
.test3 {display:block }
}
-------------------------
will result
@media test {
.test1 { display: block;}
.test2 { display: block;}
}
.test3 {
display: block;
}

Best regards Robert