You can give your elements several styles, the background can be color, images, etc.
CSS
body {
background: #990000;
}
#outer {
background: #ffffff;
width: 900px;
padding: 50px;
margin: 0 auto;
}
#inner {
background: #000000;
color: #ffffff;
}
Html:
<html>
<head>
<title>My Page! Step off!</title>
</head>
<body>
<div id="outer">
<div id="inner">
Content!
</div>
</div>
</body>
</html>
source
share