Design a Website class 5
From IAMMediaWiki Create Change
More Style Day
[edit] CSS Box Model / Positioning
http://www.brainjar.com/css/positioning/
[edit] Fancy Links
a{
properties: values;
}
css properties applied to the a element will affect how links look on the page when your mouse is not over or clicking on them, and when they haven't been visited already.
a:active{
properties: values;
}
css properties applied to the a:active element will affect how links look while the user has their cursor over the element, and they are holding down the mouse button.
a:hover{
properties: values;
}
css properties applied to the a:hover element will affect how links look when a user has their cursor hovering over the link.
a:visited{
properties: values;
}
css properties applied to the a:visited element will affect how links that a user has already been too look.
More words:
http://www.echoecho.com/csslinks.htm
[edit] HOMEWORK
Read both of the above tutorials, and continue work on project 1.
