Hi, thank you for replying.
Here is the code and CSS which is made with the online generator:
Code:
<html>
<body>
<style type='text/css'>
.header{
width: 100%;
left: 0%
}
.colmask{
width: 100%;
left: 0%
}
.colmid{ right: 21% }
.colleft{ right: 60% }
.col1{
width: 58%;
left: 101%
}
.col2{
width: 17%;
left: 24%
}
.col3{
width: 19%;
left: 86%
}
.footer{
width: 100%;
left: 0%
}
.header{
clear: both;
float: left;
position: relative;
border-bottom: #000 1px solid;
background-color: #b4d2f7
}
.colmask{
clear: both;
float: left;
overflow: hidden;
position: relative;
background-color: #b4d2f7
}
.colmid{
float: left;
width: 100%;
position: relative;
background-color: #b4d2f7
}
.colleft{
float: left;
width: 100%;
position: relative;
background-color: #b4d2f7
}
.col1{
padding: 0px 0px 1em 0px;
overflow: hidden;
float: left;
position: relative;
background-color: #99ccff
}
.col2{
padding: 0px 0px 1em 0px;
overflow: hidden;
float: left;
position: relative;
background-color: #99ccff
}
.col3{
padding: 0px 0px 1em 0px;
overflow: hidden;
float: left;
position: relative;
background-color: #99ccff
}
.footer{
clear: both;
float: left;
position: relative;
border-bottom: #000 1px solid;
background-color: #b4d2f7
}
.bottom{
clear: both;
width: 100%;
float: left;
position: relative;
background-color: #cdeb8b
}
body {
border-width: 0px;
padding: 0px;
margin: 0px;
font-size: 90%;
width: 100%;
min-width: 600px;
}
</style>
<div class="bottom">
<div class="header">
head <br />
</div>
<div class="colmask">
<div class="colmid">
<div class="colleft">
<div class="col1">
middle
</div>
<div class="col2">
left
</div>
<div class="col3">
right
</div>
</div>
</div>
</div>
<div class="footer">
footer <br>
</div>
</div>
</body>
</html>
Bookmarks