CSS: Difference between revisions

From Hackepedia
Jump to navigationJump to search
No edit summary
mNo edit summary
 
Line 13: Line 13:
  </head>
  </head>


once you have offered multiple Stylesheets in your HTML, in [[firefox]] you can go to:
once you have offered multiple Stylesheets in your [[HTML]], in [[firefox]] you can go to:


  View -> Page Style ->
  View -> Page Style ->


and choose the css that looks best to you.
and choose the css that looks best to you.

Latest revision as of 10:13, 29 December 2005

Cascading Style Sheets

In this example, you will see that you can offer several different looks for your single webpage:

<head>
<title> www.yashy.com. </title>
<link rel="StyleSheet" title="Default" href="main.css" type="text/css">
<link rel="Alternate Stylesheet" title="Original"
    href="orig.css" type="text/css">
<link rel="Alternate Stylesheet" title="Dekan's"
    href="midnight.css" type="text/css">
<link rel="Alternate Stylesheet" title="Mouring's"
   href="mouring.css" type="text/css">
</head>

once you have offered multiple Stylesheets in your HTML, in firefox you can go to:

View -> Page Style ->

and choose the css that looks best to you.