SearchSearch   

Internal vs External stylesheets

 
   Webmaster Forums (Home) -> CSS RSS
Next:  Moving code from external stylesheet to internal  
Author Message
Stapes

External


Since: Aug 06, 2007
Posts: 5



(Msg. 1) Posted: Mon Aug 06, 2007 7:29 am
Post subject: Internal vs External stylesheets
Archived from groups: comp>infosystems>www>authoring>stylesheets (more info?)

Hi

I understand the following is an example using an internal stylesheet.

<style type="text/css" title="currentStyle" media="screen">
@import "main1.css";
</style>

How would I specify it as an external stylesheet?

Stapes
Back to top
Andy Dingley

External


Since: Jun 01, 2007
Posts: 134



(Msg. 2) Posted: Mon Aug 06, 2007 8:42 am
Post subject: Re: Internal vs External stylesheets
Archived from groups: per prev. post (more info?)

On 6 Aug, 15:29, Stapes <steve.sta... RemoveThis @gmail.com> wrote:

> I understand the following is an example using an internal stylesheet.
>
> <style type="text/css" title="currentStyle" media="screen" >
> @import "main1.css";
> </style>

It's both: an internal stylesheet (inside the <style> element) and an
external stylesheet that's referenced by it (main1.css).

The syntax used here is still valid and will work, but it's an
obsolete trick used to get round some ancient NS4 problems. There's no
reason to continue doing so.
http://www.w3.org/TR/CSS21/cascade.html#at-import


> How would I specify it as an external stylesheet?

<link type="text/css" rel="stylesheet" href="main1.css" >


Strictly you would convert it to this:
<link type="text/css" rel="stylesheet" href="main1.css" media="screen"
>
(with the media selector)

but unless you have a particular concrete reason for doing this,
you're probably better taking it out and applying the stylesheet to
all media.
Back to top
Display posts from previous:   
       Webmaster Forums (Home) -> CSS
Page 1 of 1

 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum