0

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?

freddiefujiwara
  • 53,587
  • 28
  • 74
  • 104

1 Answers1

7

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
  • 55,635
  • 14
  • 110
  • 143
  • 7
    I think if you hit those limits, you might want to rethink your css :D – Ian G May 19 '09 at 09:54
  • I could not find any evidence for a 288KB limit. See https://stackoverflow.com/questions/49683077/is-there-a-css-file-size-limit-in-ie9/49784811#49784811 – Arya Apr 11 '18 at 21:42