how to make 2 tone background?

Permalink
Hi all,
I want to make a site with a 2 layer background (not sure whats it called) to make it easy, take a look at attached file.
anybody can give me a hint on how to do this?

Thanks in advance!

1 Attachment

yopidjau
 
Steevb replied on at Permalink Reply
Steevb
Hi,

Example for the CSS:
body {
   font: 1em/1.4  Arial,sans-serif;
   background: #999;/*body background colour*/
   margin: 0;
   padding: 0;
   color: #000; /*text colour*/
   }
#container {
   width: 990px;
   background: #FFF; /*content colour*/
   margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}



Steev