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
  • 57,041
  • 28
  • 76
  • 106

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
  • 57,867
  • 14
  • 111
  • 145
  • 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