firstly sorry for my English.I try to have two div.One of them on the left, other of them on the left.I try but relative dive doesn't harmonize the absolute one.My Image here
My code is here;
<style>
div.ana {border:0;background:#fff;position:relative;margin-left:10%;margin-right:10%;border-left:1px solid #c9cfd9;border-right:1px solid #c9cfd9;}
div.menu {background:#f2f4f6;font-size:100%;font-weight:bold;padding:8px;border-bottom:1px solid #dce0e7;}
div.orta {position:relative;z-index:1;}
div.sol {position:inherit;top:0;left:0;margin-left:0;width:21%;padding:10px 5px 5px 5px;}
div.sag {position:absolute;top:0;right:0;margin-right:0;width:76%;padding:10px 5px 5px 5px;border-left:1px solid #c9cfd9;}
</style>
<div class="ana">
<div class="orta">
<div class="sag">
some word on right
</div><div class="sol">
some words on left
</div>
</div>
</div>there is on the left (like hehe)
What can I do ? edit: This is the link, there is overflow, I 'want to class="orta" will stretch. link : Mylink
Final : Thank you I fixed that.If div is not strecth when the close tag, we can add
<div style="clear:both"></div>
In there after the class="sol" div close..Thank you.
overflow:hidden;. Is That what you want? – jotapdiez Apr 27 '11 at 13:17