I am using a CMS as a basis for a website. There are some special articles I wish to add and they require custom css.
To keep things tidy, I want to have unique css files for each of these special articles and invoke them using
@import url('filename.css')
However, the files will only load if the @import is at the top of the site css file. Does this make sense? By that logic, anything that appears below the @import will cancel what that which I am trying to code in a special manner. Is it not possible to have an @import at the end of a css file?