This below CSS stylesheet is to set the Background container and to handle all the DIV elements of a web page. The container class is the CSS class that can be set by the desired color
CSS Container Example
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Background Setup</title>
<style type="text/css">
.container{
width: 850px;
height: 700px;
background: green;
}
.smallbox {
float: left;
overflow: auto;
visibility: visible;
width: auto;
height: auto;
padding: 25px;
background: blue;
}
.top {
float: center;
right: 150px;
background: grey;
}
</style>
</head>
<body>
<div class="container">
<div class="top">this is a example<br>
this is a example<br> this is a example <br>
this is a example </div>
<div class="smallbox">this is a example</div>
</div>
</body>
</html>