CSS Tutorial: What You Should Already Know
CSS Tutorial: What You Should Already Know
CSS Tutorial: What You Should Already Know
In our CSS tutorial you will learn how to use CSS to control the style
and layout of multiple Web pages all at once.
Introduction to CSS
What You Should Already Know
Before you continue you should have some basic understanding of the following:
• HTML / XHTML
What is CSS?
• CSS stands for Cascading Style Sheets
• Styles define how to display HTML elements
• Styles are normally stored in Style Sheets
• Styles were added to HTML 4.0 to solve a problem
• External Style Sheets can save you a lot of work
• External Style Sheets are stored in CSS files
• Multiple style definitions will cascade into one
CSS Demo
With CSS, your HTML documents can be displayed using different output styles:
As the two major browsers - Netscape and Internet Explorer - continued to add new
HTML tags and attributes (like the <font> tag and the color attribute) to the original
HTML specification, it became more and more difficult to create Web sites where the
content of HTML documents was clearly separated from the document's presentation
layout.
To solve this problem, the World Wide Web Consortium (W3C) - the non profit,
standard setting consortium, responsible for standardizing HTML - created STYLES
in addition to HTML 4.0. All major browsers support Cascading Style Sheets.
Style Sheets Can Save a Lot of Work
Styles sheets define HOW HTML elements are to be displayed, just like the font tag
and the color attribute in HTML 3.2. Styles are normally saved in external .css files.
External style sheets enable you to change the appearance and layout of all the pages
in your Web, just by editing one single CSS document!
CSS is a breakthrough in Web design because it allows developers to control the style
and layout of multiple Web pages all at once. As a Web developer you can define a
style for each HTML element and apply it to as many Web pages as you want. To
make a global change, simply change the style, and all elements in the Web are
updated automatically.
Cascading Order
What style will be used when there is more than one style specified for an HTML
element?
Generally speaking we can say that all the styles will "cascade" into a new "virtual"
style sheet by the following rules, where number four has the highest priority:
1. Browser default
2. External style sheet
3. Internal style sheet (inside the <head> tag)
4. Inline style (inside an HTML element)
So, an inline style (inside an HTML element) has the highest priority, which means
that it will override a style declared inside the <head> tag, in an external style sheet,
or in a browser (a default value).
CSS Syntax
Syntax
The CSS syntax is made up of three parts: a selector, a property and a value:
The selector is normally the HTML element/tag you wish to define, the property is the
attribute you wish to change, and each property can take a value. The property and
value are separated by a colon, and surrounded by curly braces:
Note: If the value is multiple words, put quotes around the value:
Note: If you wish to specify more than one property, you must separate each property
with a semicolon. The example below shows how to define a center aligned
paragraph, with a red text color:
p {text-align:center;color:red}
To make the style definitions more readable, you can describe one property on each
line, like this:
p
{
text-align: center;
color: black;
font-family: arial
}
Grouping
You can group selectors. Separate each selector with a comma. In the example below
we have grouped all the header elements. All header elements will be displayed in
green text color:
h1,h2,h3,h4,h5,h6
{
color: green
}
The class Selector
With the class selector you can define different styles for the same type of HTML
element.
Say that you would like to have two types of paragraphs in your document: one right-
aligned paragraph, and one center-aligned paragraph. Here is how you can do it with
styles:
<p class="right">
This paragraph will be right-aligned.
</p>
<p class="center">
This paragraph will be center-aligned.
</p>
Note: To apply more than one class per given element, the syntax is:
The paragraph above will be styled by the class "center" AND the class "bold".
You can also omit the tag name in the selector to define a style that will be used by all
HTML elements that have a certain class. In the example below, all HTML elements
with class="center" will be center-aligned:
In the code below both the h1 element and the p element have class="center". This
means that both elements will follow the rules in the ".center" selector:
<h1 class="center">
This heading will be center-aligned
</h1>
<p class="center">
This paragraph will also be center-aligned.
</p>
Do NOT start a class name with a number! It will not work in Mozilla/Firefox.
Add Styles to Elements with Particular Attributes
You can also apply styles to HTML elements with particular attributes.
The style rule below will match all input elements that have a type attribute with a
value of "text":
The id Selector
You can also define styles for HTML elements with the id selector. The id selector is
defined as a #.
The style rule below will match the element that has an id attribute with a value of
"green":
The style rule below will match the p element that has an id with a value of "para1":
p#para1
{
text-align: center;
color: red
}
CSS Comments
Comments are used to explain your code, and may help you when you edit the source
code at a later date. A comment will be ignored by browsers. A CSS comment begins
with "/*", and ends with "*/", like this:
/* This is a comment */
p
{
text-align: center;
/* This is another comment */
color: black;
font-family: arial
}
CSS How To...
How to Insert a Style Sheet
When a browser reads a style sheet, it will format the document according to it. There
are three ways of inserting a style sheet:
An external style sheet is ideal when the style is applied to many pages. With an
external style sheet, you can change the look of an entire Web site by changing one
file. Each page must link to the style sheet using the <link> tag. The <link> tag goes
inside the head section:
<head>
<link rel="stylesheet" type="text/css"
href="mystyle.css" />
</head>
The browser will read the style definitions from the file mystyle.css, and format the
document according to it.
An external style sheet can be written in any text editor. The file should not contain
any html tags. Your style sheet should be saved with a .css extension. An example of a
style sheet file is shown below:
hr {color: sienna}
p {margin-left: 20px}
body {background-image: url("images/back40.gif")}
Do NOT leave spaces between the property value and the units! If you use "margin-
left: 20 px" instead of "margin-left: 20px" it will only work properly in IE6 but it will
not work in Mozilla/Firefox or Netscape.
An internal style sheet should be used when a single document has a unique style. You
define internal styles in the head section by using the <style> tag, like this:
<head>
<style type="text/css">
hr {color: sienna}
p {margin-left: 20px}
body {background-image: url("images/back40.gif")}
</style>
</head>
The browser will now read the style definitions, and format the document according
to it.
Note: A browser normally ignores unknown tags. This means that an old browser that
does not support styles, will ignore the <style> tag, but the content of the <style> tag
will be displayed on the page. It is possible to prevent an old browser from displaying
the content by hiding it in the HTML comment element:
<head>
<style type="text/css">
<!--
hr {color: sienna}
p {margin-left: 20px}
body {background-image: url("images/back40.gif")}
-->
</style>
</head>
Inline Styles
An inline style loses many of the advantages of style sheets by mixing content with
presentation. Use this method sparingly, such as when a style is to be applied to a
single occurrence of an element.
To use inline styles you use the style attribute in the relevant tag. The style attribute
can contain any CSS property. The example shows how to change the color and the
left margin of a paragraph:
For example, an external style sheet has these properties for the h3 selector:
h3
{
color: red;
text-align: left;
font-size: 8pt
}
And an internal style sheet has these properties for the h3 selector:
h3
{
text-align: right;
font-size: 20pt
}
If the page with the internal style sheet also links to the external style sheet the
properties for h3 will be:
color: red;
text-align: right;
font-size: 20pt
The color is inherited from the external style sheet and the text-alignment and the
font-size is replaced by the internal style sheet.
CSS Background
The CSS background properties define the background effects of an element.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Text
The CSS text properties define the appearance of text.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Font
The CSS font properties define the font in text.
Note: In CSS1 fonts are identified by a font name. If a browser does not support the
specified font, it will use a default font.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Border
The CSS border properties define the borders around an element.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Outlines
The CSS outline properties is used to draw a line around an element, outside the
border edge.
The CSS outline properties sets the outlines around elements. You can specify the
style, color, and width of the outline.
Note: Outlines do not take up space, and they do not have to be rectangular.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Margin
The CSS margin properties define the space around elements.
Note: Netscape and IE give the body tag a default margin of 8px. Opera does not!
Instead, Opera applies a default padding of 8px, so if one wants to adjust the margin
for an entire page and have it display correctly in Opera, the body padding must be set
as well!
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Padding
The CSS padding properties define the space between the element border and the
element content.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Table
The CSS table properties allow you to set the layout of a table.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Positioning
The CSS positioning properties allows you to position an element.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
Property Description Values IE F N W3C
bottom Sets how far the bottom auto 5 1 6 2
edge of an element is %
above/below the bottom length
edge of the parent
element
clip Sets the shape of an shape 4 1 6 2
element. The element is auto
clipped into this shape,
and displayed
left Sets how far the left auto 4 1 4 2
edge of an element is to %
the right/left of the left length
edge of the parent
element
overflow Sets what happens if the visible 4 1 6 2
content of an element hidden
overflow its area scroll
auto
position Places an element in a static 4 1 4 2
static, relative, absolute relative
or fixed position absolute
fixed
right Sets how far the right auto 5 1 6 2
edge of an element is to %
the left/right of the right length
edge of the parent
element
top Sets how far the top auto 4 1 4 2
edge of an element is %
above/below the top length
edge of the parent
element
vertical-align Sets the vertical baseline 4 1 4 1
alignment of an element sub
super
top
text-top
middle
bottom
text-bottom
length
%
z-index Sets the stack order of an auto 4 1 6 2
element number
CSS Pseudo-classes
CSS pseudo-classes are used to add special effects to some selectors.
Syntax
The syntax of pseudo-classes:
Anchor Pseudo-classes
A link that is active, visited, unvisited, or when you mouse over a link can all be
displayed in different ways in a CSS-supporting browser:
Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to
be effective!!
Note: a:active MUST come after a:hover in the CSS definition in order to be
effective!!
If the link in the example above has been visited, it will be displayed in red.
CSS2 - The :first-child Pseudo-class
The :first-child pseudo-class matches a specified element that is the first child of
another element.
<html>
<head>
<style type="text/css">
p:first-child
{
font-weight:bold
}
</style>
</head>
<body>
<p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
<p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
</body>
</html>
<html>
<head>
<style type="text/css">
p > em:first-child
{
font-weight:bold
}
</style>
</head>
<body>
<p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
<p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
</body>
</html>
<html>
<head>
<style type="text/css">
p:first-child em
{
font-weight:bold
}
</style>
</head>
<body>
<p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
<p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
</body>
</html>
<html>
<head>
<style type="text/css">
q:lang(no)
{
quotes: "~" "~"
}
</style>
</head>
<body>
<p>Some text <q lang="no">A quote in a paragraph</q>
Some text.</p>
</body>
</html>
Pseudo-classes
Browser support: IE: Internet Explorer, F: Firefox, N: Netscape.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
CSS Pseudo-elements
CSS pseudo-elements are used to add special effects to some selectors.
Syntax
The syntax of pseudo-elements:
p:first-line {color:#0000ff;font-variant:small-caps}
<p>Some text that ends up on two or more lines</p>
In the example above the browser displays the first line formatted according to the
"first-line" pseudo element. Where the browser breaks the line depends on the size of
the browser window.
Note: The "first-line" pseudo-element can only be used with block-level elements.
p:first-letter {color:#ff0000;font-size:xx-large}
<p>The first words of an article...</p>
Note: The "first-letter" pseudo-element can only be used with block-level elements.
• font properties
• color properties
• background properties
• margin properties
• padding properties
• border properties
• text-decoration
• vertical-align (only if "float" is "none")
• text-transform
• line-height
• float
• clear
p.article:first-letter {color:#ff0000}
<p class="article">A paragraph in an article</p>
The example above will make the first letter of all paragraphs with class="article" red.
Multiple Pseudo-elements
Several pseudo-elements can be combined:
p:first-letter {color:#ff0000;font-size:xx-large}
p:first-line {color:#0000ff}
<p>The first words of an article...</p>
The first
words of an
article...
In the example above the first letter of the paragraph will be red with a font size of
24pt. The rest of the first line would be blue while the rest of the paragraph would be
the default color.
The style below will play a sound before each occurrence of an <h1> element:
h1:before
{
content: url(beep.wav)
}
The style below will play a sound after each occurrence of an <h1> element:
h1:after
{
content: url(beep.wav)
}
Pseudo-elements
Browser support: IE: Internet Explorer, F: Firefox, N: Netscape.
W3C: The number in the "W3C" column indicates in which CSS recommendation the
property is defined (CSS1 or CSS2).
Image Gallery
The following image gallery is created with CSS:
<html>
<head>
<style type="text/css">
div.img
{
margin: 2px;
border: 1px solid #0000ff;
height: auto;
width: auto;
float: left;
text-align: center;
}
div.img img
{
display: inline;
margin: 3px;
border: 1px solid #ffffff;
}
div.img a:hover img
{
border: 1px solid #0000ff;
}
div.desc
{
text-align: center;
font-weight: normal;
width: 120px;
margin: 2px;
}
</style>
</head>
<body>
<div class="img">
<a target="_blank" href="klematis_big.htm">
<img src="klematis_small.jpg" alt="Klematis" width="110"
height="90" />
</a>
<div class="desc">Add a description of the image here</div>
</div>
<div class="img">
<a target="_blank" href="klematis2_big.htm">
<img src="klematis2_small.jpg" alt="Klematis" width="110"
height="90" />
</a>
<div class="desc">Add a description of the image here</div>
</div>
<div class="img">
<a target="_blank" href="klematis3_big.htm">
<img src="klematis3_small.jpg" alt="Klematis" width="110"
height="90" />
</a>
<div class="desc">Add a description of the image here</div>
</div>
<div class="img">
<a target="_blank" href="klematis4_big.htm">
<img src="klematis4_small.jpg" alt="Klematis" width="110"
height="90" />
</a>
<div class="desc">Add a description of the image here</div>
</div>
</body>
</html>
Regular image:
In Firefox (opacity:x) x can be a value from 0.0 - 1.0. A lower value makes the
element more transparent.
We see that the first line of the source code is similar to the source code in Example 1.
In addition, we have added an onmouseover attribute and an onmouseout attribute.
The onmouseover attribute defines what will happen when the mouse pointer moves
over the image. In this case we want the image to NOT be transparent when we move
the mouse pointer over it.
The syntax for this in Firefox is: this.style.opacity=1 and the syntax in IE is:
this.filters.alpha.opacity=100.
When the mouse pointer moves away from the image, we want the image to be
transparent again. This is done in the onmouseout attribute.
First, we create a div element (class="background") with a fixed height and width, a
background image, and a border. Then we create a smaller div (class="transbox")
inside the first div element. This div also have a fixed width, a background image, and
a border. In addition we make this div transparent.
Media Types
Some CSS properties are only designed for a certain media. For example the "voice-
family" property is designed for aural user agents. Some other properties can be used
for different media types. For example, the "font-size" property can be used for both
screen and print media, but perhaps with different values. A document usually needs a
larger font-size on a screen than on paper, and sans-serif fonts are easier to read on the
screen, while serif fonts are easier to read on paper.
The style in the example below tells the browser to display a 14 pixels Verdana font
on the screen. But if the page is printed, it will be in a 10 pixels Times font. Notice
that the font-weight is set to bold, both on screen and on paper:
<html>
<head>
<style>
@media screen
{
p.test {font-family:verdana,sans-serif; font-size:14px}
}
@media print
{
p.test {font-family:times,serif; font-size:10px}
}
@media screen,print
{
p.test {font-weight:bold}
}
</style>
</head>
<body>
....
</body>
</html>
See it yourself ! If you are using Mozilla/Firefox or IE 5+ and print this page, you
will see that the paragraph under "Media Types" will be displayed in another font, and
have a smaller font size than the rest of the text.
CSS Don't
Here are some technologies you should try to avoid when using CSS.
Why avoid it? The behavior attribute is only supported by Internet Explorer.
<html>
<head>
<style type="text/css">
h1 { behavior: url(behave.htc) }
</style>
</head>
<body>
<h1>Mouse over me!!!</h1>
</body>
</html>
<script type="text/javascript">
function hig_lite()
{
element.style.color='red';
}
function low_lite()
{
element.style.color='blue';
}
</script>
The behavior file contains a JavaScript and event handlers for the elements.
If you use Internet Explorer, try it yourself (mouse over the text in the example).
<html>
<head>
<style type="text/css">
#typing
{
behavior:url(behave_typing.htc);
font-family:"courier new";
}
</style>
</head>
<body>
<span id="typing" speed="100">IE5 introduced DHTML behaviors.
Behaviors are a way to add DHTML functionality to HTML elements
with the ease of CSS.<br /><br />How do behaviors work?<br />
By using XML we can link behaviors to any element in a web page
and manipulate that element.</p>
</span>
</body>
</html>
You have learned how to use CSS to add backgrounds, format text, add and format
borders, and specify padding and margins of elements.
You have also learned how to position an element, control the visibility and size of an
element, set the shape of an element, place an element behind another, and to add
special effects to some selectors, like links.