What is the exact css code to put a background behind a centered div tag?

pzqwpo

New Member
I want to center my website and behind the centered div tag i want to have a plain gray background but i can't seem to get any codes to work.

Please give me the exact codes and where to put them...i dont know if i should put it in a css or right in the page code.
 

AusQB

New Member
CSS
Code:
body {
   background: #666666;
}

div#wrap {
   height: auto;
   margin: 0 auto;
}


HTML
HTML:
<body>

   <div id="wrap"></div>

</body>
 
I want to center my website and behind the centered div tag i want to have a plain gray background but i can't seem to get any codes to work.

Please give me the exact codes and where to put them...i dont know if i should put it in a css or right in the page code.
 
Top