Difference between revisions of "Cascading Style Sheets"

From PeformIQ Upgrade
Jump to navigation Jump to search
 
(11 intermediate revisions by the same user not shown)
Line 19: Line 19:
* [http://en.wikipedia.org/wiki/Style_sheet_%28web_development%29 Use in web development]
* [http://en.wikipedia.org/wiki/Style_sheet_%28web_development%29 Use in web development]


=Other References=
=Other Links=


* [http://www.w3.org/2002/03/csslayout-howto.html.en W3.org article on tableless layout]
* [http://www.w3.org/2002/03/csslayout-howto.html.en W3.org article on tableless layout]
Line 28: Line 28:
* [http://www.csszengarden.com/ CSS ZenGarden]
* [http://www.csszengarden.com/ CSS ZenGarden]
* [http://www.cameraontheroad.com/?p=189 Camera on the Road Site]
* [http://www.cameraontheroad.com/?p=189 Camera on the Road Site]
* http://wdvl.internet.com/Authoring/Style/Sheets/Meyer/


=Example Sites=
=Example Sites=


* [http://www.cssplay.co.uk/ CSS Play]
* [http://www.cssplay.co.uk/ CSS Play]
* [http://www.tizag.com/cssT/liveExampleCss/ Tizag.com]
=Syntax References=
* http://www.tizag.com/cssT/reference.php
* http://www.htmldog.com/guides/cssadvanced/
* http://www.htmldog.com/guides/cssadvanced/atrules/
=Tutorials=
* http://www.w3schools.com/css/default.asp
* http://www.csstutorial.net/
* http://css.maxdesign.com.au/
* http://www.html.net/tutorials/css/introduction.asp
* http://www.sitepoint.com/subcat/css
* http://www.echoecho.com/css.htm
* http://www.westciv.com/style_master/academy/css_tutorial/
* http://www.pageresource.com/dhtml/indexcss.htm
* http://www.htmlgoodies.com/beyond/css/
* http://www.thenoodleincident.com/tutorials/css/
* http://www.cameronolthuis.com/2006/04/top-10-css-tutorials/
* http://www.bigbaer.com/css_tutorials/
* http://www.d.umn.edu/is/support/Training/Online/webdesign/css.html


=Incorporation into HTML=
=Incorporation into HTML=
Line 53: Line 77:
</pre>
</pre>


=CSS Syntax=
=Syntax=
 
Define attributes to be associated with an HTML tag as follows:
 
<pre>
<HTML tag> {  <CSS Property> : <Value> ; }
</pre>
 
eg.
 
<pre>
  body  {
    background-color: blue;
    background: url(/img/rock.gif);
  }
  p  {
    color: white;
  }
</pre>
 
==Using CSS Classes==
 
Using classes is simple. Add an extension to the typical CSS definition and make sure you specify this extension as the class in your HTML.  For example.
 
CSS Code:
<pre>
p.first{ color: blue; }
p.second{ color: red; }
</pre>
HTML Code:
<pre>
<html>
<body>
<p>This is a normal paragraph.</p>
 
<p class="first">This is a paragraph that uses the p.first CSS code!</p>
<p class="second">This is a paragraph that uses the p.second CSS code!</p>
...
</pre>
 
Here is a more complex example where overloading is used:
 
CSS Code:
<pre>
p{ color: red; font-size: 20px; }
p.first{ color: blue; }
p.second{ font-size: 12px; }
</pre>
HTML Code:
<pre>
<html>
<body>
<p>This is a normal paragraph.</p>
 
<p class="test1">This is a paragraph that uses the p.test1 CSS code!</p>
<p class="test2">This is a paragraph that uses the p.test2 CSS code!</p>
...
</pre>
 
==More Examples==
 
===background-color===
 
<pre>
h4 { background-color: white; }
p  { background-color: #1078E1; }
ul { background-color: rgb( 149, 206, 145); }
<pre>
 
===background-image===
 
<pre>
p { background-image: url(smallPic.jpg); }
h4{ background-image: url(http://www.tizag.com/pics/cssT/smallPic.jpg); }
</pre>
 
<pre>
p { 
background-image: url(smallPic.jpg);
background-repeat: repeat; }
h4 { 
background-image: url(smallPic.jpg);
background-repeat: repeat-y;}
ol { 
background-image: url(smallPic.jpg);
background-repeat: repeat-x;}
ul { 
background-image: url(smallPic.jpg);
background-repeat: no-repeat;}
</pre>
 
==Font==
 
====Colour====
<pre>
h4 { color: red; }
h5 { color: #9000A1; }
h6 { color: rgb(0, 220, 98); }
</pre>
 
====Family====
 
<pre>
h4 { font-family: sans-serif; }
h5 ( font-family: serif; }
h6 { font-family: arial; }
</pre>
 
====Size====
 
<pre>
p { font-size: 120%; }
ol{ font-size: 10px; }
ul{ font-size: x-large; }
</pre>
 
====Style====
 
<pre>
p { font-style: italic; }
h4{ font-style: oblique; }
</pre>
 
====Weight====
<pre>
p { font-weight: 100; }
ul{ font-weight: bolder; }
</pre>
 
====Variant====
<pre>
p { font-variant: small-caps; }
</pre>
 
===Padding===
 
<pre>
p {padding: 15px; border: 1px solid black; } 
h5{padding: 0px; border: 1px solid red;}
</pre>
 
<pre>
p {padding: 2%; border: 1px solid black; }
h5{padding: 0px; border: 1px solid red;}
</pre>
 
 
<pre>
p { padding-left: 5px; border: 1px solid black; }
h5{
    padding-top: 0px;
    padding-right: 2px;
    padding-bottom: 13px;
    padding-left: 21px;
    border: 1px solid red;
}
</pre>
 
Four padding values can be declared at once by either specifying two or four values. When only using two values, the first will define the padding on the top and bottom, while the second will define the padding on the left and right.
 
When using the four value padding specification, the corresponding directions are: top, right, bottom, left. To help you remember what the order is, just remember that it starts at the top and then moves clockwise until it reaches the left. The examples below shows partial (2) and complete (4) padding usage.
 
<pre>
p {
    padding: 5px 15px;
    border: 1px solid black;
h5{
    padding: 0px 5px 10px 3px;
    border: 1px solid red;
} </pre>
 
===Margin===
 
Similar to padding but outside rather than inside object border.
 
<pre>
p {margin: 5px; border: 1px solid black; } 
h5{margin: 0px; border: 1px solid red;}
</pre>
 
<pre>
p {margin: 2%; border: 1px solid black; }
h5{margin: 0px; border: 1px solid red;}
</pre>
 
<pre>
p { margin-left: 5px; border: 1px solid black; }
h5{ margin-top: 0px;
margin-right: 2px;
margin-bottom: 13px;
margin-left: 21px;
border: 1px solid red; }
</pre>
 
<pre>
p {margin: 5px 15px;
border: 1px solid black; } 
h5{margin: 0px 5px 10px 3px;
border: 1px solid red;}
</pre>
 
===Border===
 
http://www.tizag.com/cssT/border.php
 
<pre>
p.solid {border-style: solid; }
p.double {border-style: double; }
p.groove {border-style: groove; }
p.dotted {border-style: dotted; }
p.dashed {border-style: dashed; }
p.inset {border-style: inset; }
p.outset {border-style: outset; }
p.ridge {border-style: ridge; }
p.hidden {border-style: hidden; }
</pre>
 
===Lists===
 
http://www.tizag.com/cssT/list.php
 
<pre>
ol { list-style-type: upper-roman; }
ul { list-style-type: circle; }
</pre>
 
<pre>
ul { list-style-image: url("listArrow.gif"); }
ol { list-style-image: url("listArrow2.gif"); }
</pre>
 
<pre>
ul { list-style: upper-roman inside url("http://www.example.com/notHere.gif");}</pre>
</pre>
 
===Links===


A link has four different states that it can be in. CSS allows you to customize each state. Please refer to the following keywords that each correspond to one specific state:
See [[CSS Syntax]]


* link - this is a link that has not been used, nor is a mouse pointer hovering over it
=Documents=
* visited - this is a link that has been used before, but has no mouse on it
* hover - this is a link currently has a mouse pointer hovering over it/on it
* active - this is a link that is in the process of being clicked


<pre>
* [http://www.performiq.com.au/kb/images/CSS2.pdf Cascading Style Sheets, level 2 CSS2 Specification]
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>





Latest revision as of 15:41, 21 March 2008

Full Name

Cascading Style Sheets - Otherwise known as CSS

Information

A scripting language used to describe the presentation of structured documents. A structured document is a document whose sections are clearly defined and categorized. A program presenting the document can present it in different styles because the content has been categorized. One common style sheet language with widespread use is CSS (Cascading Style Sheets), which is used to style documents written in HTML, XHTML, SVG, XUL, and other markup languages. One of the most attractive features of structured documents is that the content can be reused in many contexts and presented in various ways. Different style sheets can be attached to the logical structure to produce different presentations.

When used in conjunction with HTML 4.0 (or later) and Javascript embodies what is known as Dynamic HTML or DHTML

Related Links

Also referred to by the abbreviation, CSS

Wikipedia Articles

Other Links

Example Sites

Syntax References

Tutorials

Incorporation into HTML

Incorporate stle sheets by inclusion of a file as follows:

<link href="/css/common.css" media="handheld,print,projection,screen,tty,tv" rel="stylesheet" type="text/css" />

Note the different media types...

The successful load of CSS files can be verified with Javascript as follows:

  <script type="text/javascript">
    try {
      DynamicCss.addCssUrl('/css/print.css', 'print');
    } catch(e) {}
  </script>

Syntax

See CSS Syntax

Documents