tags:

views:

143

answers:

1

I think I divide it because css grew big, and to do import.

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

is there be the number of the upper limits of import files?

+7  A: 

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

Firefox and Opera should not be limited.

alexn
I think if you hit those limits, you might want to rethink your css :D
DrG