CSS quick reference

© nj

CSS quick reference

CSS 2.1 specification

http://www.w3.org/TR/CSS21/

CSS reference

http://www.w3schools.com/css/css_reference.asp

css_reference.html

http://www.w3.org/TR/CSS21/propidx.html

html tag reference

http://www.w3schools.com/tags/ref_byfunc.asp

xhtml11_tags.xhtml

CSS Validation Service

http://jigsaw.w3.org/css-validator/

stylesheet declaration

A stylesheet can be declared at three different places relative to the html file it applies to

  1. in an external file
  2. in the head element of the html file
  3. in the style attribute of any element of the html file body

external css file referencing

if the css is declared in an external file, there are two ways to reference it :

  1. by import
  2. by linking

Import

<style type="text/css" media="all">
    @import url( styles/base.css );
    @import url( styles/secondary.css );
</style>

advantages

Importing can be done from the html file or from a css file. That means it is possible to create complex stylesheets by importing in other stylesheets.

Linking

<link rel="stylesheet" type="text/css" href="styles/base.css" />
<link rel="stylesheet" type="text/css" href="styles/secondary.css" />

advantages

external vs. internal css declaration

In most of the cases, external stylesheets must be preferred because

However if the web site has a huge traffic (e-bay, google, ...) it can be better to declare the css inside the html file because the server has to deliver one file instead of two.

selections

http://www.w3.org/TR/CSS21/selector.html#pattern-matching
selector selection
#my_id
select the element with the id
my_id
p#my_id
select the element with the id
my_id
only if this element is of type
p
.my_class
select all the elements with the class
my_class
p.my_class
select all the elements with the class
my_class
only if these elements are of type
p
div p em
select all the elements
em
that have a parent
p
that have themselves a parent
div

conflict resolution

see http://www.rebelinblue.com/specificity.php

css rules can be in conflict. Conflict resolution is done like that

specificity calculation

http://www.w3.org/TR/CSS21/cascade.html#specificity

examples

selector specificity
p
1
body p
2
p.toto
11
p#toto
101
body p#toto
102
body#toto p
102
body#toto p#toto
202
body#toto p.toto
212
<p style="font-family: 'Courier', sans-serif;">...</p>
1000

attributes order

top, right, bottom, left

As a reminder, start at noon (top) and follow clockwise.

units

font size

Keyword Estimated percentage of original size
xx-small 60%
x-small 75%
small 85%
medium 100%
large 120-125%
x-large 150%
xx-large 200%

Positioning schemes

http://www.w3.org/TR/CSS21/visuren.html#positioning-scheme http://www.quirksmode.org/css/clearing.html

usefull links

nj links

Designing effective websites course links

Planning

Information architecture

Writing for the web

Page titles excercise:

Images and multimedia

Visual design

Colours and fonts exercise:

Production

Other

Reference sites