What i know when browser sees a script tag in while parsing html it stops its execution and get the script executes it and then again starts parsing the dom.
Does the same thing happen for CSS as well? or can CSSOM parsing and dom parsing goes side by side.
UPDATE
I think my question wasn't clear, i was not asking about the order of css loading i know CSS files are added in the order they are included. My question was once they gets downloaded, the browser does a CSS parsing and while doing so does the browser stops the dom parsing, as we have the case with script loading. I hope my question is clear now.