I have a folder called "HTML-CSS Files" containing a xhtml file called external.html. The folder also contains a folder called "css" which houses all my css files. The css folder has sub directories folders called "print" and "screen" grouping each css file based on their media type usage. The screen folder contains external.css and the print folder contains default.css and layout.css.
I'm using external.css to import default.css and layout.css but I don't know how to access them since they are not in the same directories.
@import url("..print/default.css");
@import url("..print/layout.css");
The code above is how I'm trying to import the other style sheets into external.css