Quote:
Originally Posted by pingeyeg
You would do this by using CSS and div tags. This is a very simple layout that will definitely require tweaking on your part b/c I haven't even tested it yet, but this will get you started.
.left-column {
position: relative;
float: left;
}
.center-column {
position: relative;
float: center;
}
.right-column {
position: relative;
float: right;
}
<div class="left-column">
</div>
<div class="center-column">
</div>
<div class="right-column">
</div>
|
I would do this same thing but then put a big container around all of it and clear them.
.container{
clear:both;
}
.left-column {
position: relative;
float: left;
}
.center-column {
position: relative;
float: center;
}
.right-column {
position: relative;
float: right;
}
<div class="container"
<div class="left-column">
</div>
<div class="center-column">
</div>
<div class="right-column">
</div>
</div>
That should work and you'll be happy you put a container as you get into it.
|