Css Positioning Inside A Div
I have been using Position: Absolute for a long time now and I've come to the conclusion that its hopeless. I want my application to be a fluid layout so it scales with different r
Solution 1:
<div id="hold">
width:500px; margin: 0 auto;
<div id="left">
height: 500px;
width:100px;
</div>
<div id="middleHold">
float:left;
<div id="middle1">
height: 250px;
width: 300px;
</div>
<div id="middle2">
height: 50px;
width: 300px;
</div>
<div id="middle3">
height: 200px;
width: 300px;
</div>
</div> <!-- end #middleHold -->
<div id="right">
width: 100px;
height: 500px;
float:left;
</div>
</div> <!-- end #hold -->
Heres the id's and just add the css to them.
Post a Comment for "Css Positioning Inside A Div"