View Single Post
  #5 (permalink)  
Old 07-27-09, 06:44 AM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,516
Thanks: 20
Thanked 109 Times in 106 Posts
HTML Code:
<html>
<head>
<title>div test</title>
<style type="text/css">
body
{
padding:0;
margin:0 auto;
color:#fff;
}
.outer
{
width:100%;
}
.left
{
background-color:red;
}
.center
{
vertical-align:middle;
height:600px;
background-color:black;
}
.right
{
background-color:blue;
}
</style>
</head>
<body>
<div class="outer">
	<div class="left">Left<br />And a bit more ...</div>
	<div class="center">Center</div>
	<div class="right">Right<br />And a bit more ...</div>
</div>
</body>
</html>
Reply With Quote