css to display three coloumn content
- by arpymastro
I am trying to get three column output using <div> for each.
Right now my div on the left is lined properly even the middle one, but when I try to put right it is just clipping down.
CSS
/* left div */
#left-sidebar, #right-sidebar {
width:15%;
height:700px;
float: left;
padding-left: 15px;
padding-top: 20px;
}
/* middle div */
#mid-content {
width:75%;
padding-left: 30px;
padding-top: 20px;
}
/* right div */
#right-sidebar {
float:right;
}