I have two div's like this
<div id="left"><p>.....</p><br/>
<p>.....</p>
</div>
<div id="right"><img ..../></div>
And I have css.
#left
{
position: relative
float: left;
}
#right
{
position: relative
float: right;
}
right div doesn't float to right, because p elements in left doesn't give space for right div element, but in CSS I doesn't set P's something like this width: 100%. How to make left width flexible? I don't know image width, so I can't set fixed width's on both div's.