On Wed, 3 Aug 2005, Scot Schlinger wrote:

> How do you actually include each file in the html then?  I have never
> worked with more than one style sheet...

Inside your <head></head> tags use:

<style type="text/css" media="all">
        @import "/path/to/global.css";
        @import "/path/to/index.css";
</style>

Or:

<link rel="stylesheet" type="text/css" media="all" title="master style" 
href="/path/to/master.css" />

Then, inside master.css write:

@import url("global.css");
@import url("index.css");

--dk

Yes.  Beautiful, wonderful nature.  Hear it sing to us: *snap*  Yes.  natURE.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to