Any suggestions on how to position 3 div's side by side?
Below is the HTML code I'm using:
<body>
<div class="div_header" id="div_header"></div>
<div class="div_left" id="div_left"></div>
<div class="div_main" id="div_main"></div>
<div class="div_right" id="div_right"></div>
</body>
Here is the CSS code for the 3 Div's:
.div_header {
height: 40px;
width: 100%;
}
.div_left {
float: left;
min-height: 300px;
width: 250px;
}
.div_main {
min-height: 300px;
margin-left: 250px;
margin-right: 250px;
}
.div_right {
float: right;
min-height: 300px;
width: 250px;
}
Appreciate any help you can provide!