show/hide this revision's text 3 Added note about hard-coding widths.

Add overflow: auto; zoom: 1.0; to the 2nd div

zoom is needed to give the element layout in IE.

This is different (and in some sense closer to what was asked) than putting float: left; on the 2nd div because it preserves the width of the 2nd div expanding as far as possible to the right without hard-coding width values. zoom: 1.0; is needed to give the element layout in IE.

<div style="border: solid 1px navy; float: left;">
<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    <li>Item 5</li>
</ul>
</div>
<div style="background-color: blue; overflow: auto; zoom: 1.0;"><p>Some Text</p><p>Another paragraph</p></div>
show/hide this revision's text 2 Fixed IE

Add overflow: auto; zoom: 1.0; to the 2nd div

zoom is needed to give the element layout in IE. This is different (and in some sense closer to what was asked) than putting float: left; on the 2nd div because it preserves the width of the 2nd div expanding as far as possible to the right.

<div style="border: solid 1px navy; float: left;">
<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    <li>Item 5</li>
</ul>
</div>
<div style="background-color: blue; overflow: auto;auto; zoom: 1.0;"><p>Some Text</p><p>Another paragraph</p></div>
show/hide this revision's text 1

Add overflow: auto to the 2nd div

<div style="border: solid 1px navy; float: left;">
<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    <li>Item 5</li>
</ul>
</div>
<div style="background-color: blue; overflow: auto;"><p>Some Text</p><p>Another paragraph</p></div>