http://www.w3schools.com/css/css_reference.asp
http://www.w3.org/TR/CSS21/propidx.html
http://www.w3schools.com/tags/ref_byfunc.asp
A stylesheet can be declared at three different places relative to the html file it applies to
if the css is declared in an external file, there are two ways to reference it :
<style type="text/css" media="all"> @import url( styles/base.css ); @import url( styles/secondary.css ); </style>
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.
<link rel="stylesheet" type="text/css" href="styles/base.css" /> <link rel="stylesheet" type="text/css" href="styles/secondary.css" />
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.
selector | selection |
---|---|
#my_id |
select the element with the id my_id |
p#my_id |
select the element with the id my_idonly 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_classonly if these elements are of type p |
div p em |
select all the elements emthat have a parent pthat have themselves a parent div |
see http://www.rebelinblue.com/specificity.php
css rules can be in conflict. Conflict resolution is done like that
!importantit wins over any other rule that don't have this statement.
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 |
top, right, bottom, left
As a reminder, start at noon (top) and follow clockwise.
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% |
Page titles excercise:
Colours and fonts exercise: