show/hide this revision's text 2 added 314 characters in body

Give the container div the property position: relative; place your floating div as the first child of the container div and give it

#floatingDiv
{
    position: absolute;
    top: 0;
    right: -{widthOfFloatedDiv};
}

I think that will work, but untested

Okay so tested it and it works

<div style="position: relative; width: 980px; margin: 0 auto; border: 1px solid #000; height: 400px;">
    <div style="position: absolute; top: 0; right: -200px; width: 200px;">
        <p>Floated DIV</p>
    </div>
    <p>container div</p>
</div>
show/hide this revision's text 1

Give the container div the property position: relative; place your floating div as the first child of the container div and give it

#floatingDiv
{
    position: absolute;
    top: 0;
    right: -{widthOfFloatedDiv};
}

I think that will work, but untested