About @import in css

I think I am dividing it because the css has gotten large and for imports.

@import url("aaa.css"); 
       .
       .
       .
@import url("zzz.css"); 

      

is there a number of upper limits for import files?

0


a source to share


1 answer


Internet Explorer has a maximum of 32 @imports. There is even a ~ 288kb limit per css file.



Firefox and Opera shouldn't be limited.

+7


a source







All Articles