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>
