Why is @import not working correctly?

6

I'm trying to import a CSS inside another one but it's not working, the directory structure looks like this:

style.css
css / agoravou.css

However, the command @import url('css/agoravou.css') screen; is not working.
Does anyone know what it can be?

    
asked by anonymous 30.11.2015 / 03:41

1 answer

1

The @import must be in the first line of the file.

But it can also be some problem with the permissions of the css folder.

    
30.11.2015 / 12:53