CSS for backgrounds

Hi there certificates.

give the “body element” of each document a “specific id” attribute, let’s say…

  1. id=“body-one”
  2. id=“body-two”
  3. id=“body-three”

You can now use just a single CSS file like this …

#body-one {  
    background:  url(http://www.c5d.co.uk/gradient.jpg) left top repeat-x;
 }
#body-two {  
    background:  url(http://www.c5d.co.uk/golfclubbackground.jpg) no-repeat center center fixed;
 }
#body-three {  
    background:  #fff;
 }
table, td, th{
	#border: 1px solid #90C8E9;
	border-collapse: collapse;
}
/* the rest of you css  file*/

coothead