Forum Moderators: not2easy
new CSS.css:
body {
background:orange;
margin:0px;
padding:0px;
}
html {
margin:0px;
padding:0px;
border: none;
}
#banner {
width:100%;
height:115px;
float:top;
border:1px solid #000;
}
#mainleft {
width:33%;
float:left;
background:#fff;
padding-bottom:10px;
border:1px solid #000;
}
#maincenter {
width:34%;
float:left;
background:#fff;
padding-bottom:10px;
border:1px solid #000;
}
#mainright {
width:33%;
float:left;
background:#fff;
padding-bottom:10px;
border:1px solid #000;
}
p,h1,pre {
margin:0px 10px 10px 10px;
}
h1 {
font-size:14px;
padding-top:10px;
}
#banner h1 { margin:0px; padding:0px}
3 column layout.html:
<html >
<head>
<link rel="stylesheet"
type="text/css" href="new CSS.css" >
</head>
<body>
<div id="banner"><p>textextextextext</p></div>
<div id="mainleft"><h1>mainleft</h1>
<p>
Text.
</p>
</div>
<div id="maincenter">
<h1>maincenter</h1>
<p>text </p>
</div>
<div id="mainright"><h1>mainright</h1>
<p>textext.</p></div>
</body>
</html>