CSS: Difference between revisions

From Hackepedia
Jump to navigationJump to search
No edit summary
 
No edit summary
Line 1: Line 1:
Cascading Style Sheets
[http://www.w3.org/Style/CSS/ Cascading Style Sheets]
 
In this example, you will see that you can offer several different looks for your single webpage:
In this example, you will see that you can offer several different looks for your single webpage:
  <head>
  <head>
Line 15: Line 15:
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.

Revision as of 14:57, 17 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="Midnight"
    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.