0

I have a css file that imports many other css files. What will be sequence of css execution? Which css rules are applied first.? From imported files or the file itself?

DhavalR
  • 1,409
  • 3
  • 29
  • 57
  • This is already [answered here](https://stackoverflow.com/questions/16913131/can-one-css-file-take-priority-over-another-css-file#answer-16913205) and helps you too. – Rayees AC Sep 14 '20 at 07:11
  • I was confused with `@import`ing css files. – DhavalR Sep 14 '20 at 07:14

1 Answers1

1

They will be applied in the order you import them. Imported files first, then the file itself.

Victor Santizo
  • 1,145
  • 2
  • 7
  • 16