Design a Website class 5

esse quam videri
Jump to: navigation, search

More Style Day

CSS Box Model / Positioning

http://www.brainjar.com/css/positioning/

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

HOMEWORK

Read both of the above tutorials, and continue work on project 1.