This is what I have:

That screenshot is as wide as my screen. As you can see, the image is stuck to the left side of the screen, and the Level information section is stuck to the right side of the image. That's what I want. However, I'd also like for the border around the Level information section to extend all the way to the right edge of the screen, like this mock-up I made in MSPaint:

Here is the code for that part of the page:
<div class="levelinfo" style="margin: 10px;">
<span style="display: inline; float: left; margin-right: 10px; ">
<img src="levels/googoogjoob - By Request Only v1.1.screen.png" alt="Screenshot">
</span>
<span style="display: inline-block; float: left; height: 240px;">
<fieldset style="margin: 0px; padding: 0px; height: 239px;">
<legend>Level information</legend>
<ul style="list-style-type: none; padding: 0px; margin: 5px;">
[snip]
</ul>
</fieldset>
</span>
</div>
Sub-question: As you can see, I'm using a fieldset to create that pretty little border around the list. However, using a fieldset for purely cosmetic purposes doesn't seem very "semantic". Is there any method of getting that effect with CSS, or at least some other, more preferable HTML tag? Or do you think using a fieldset is fine?