The following html looks like how I want it in VS 2010 design view, but when I run it and it opens in IE 8 it's all jacked up. The blue and yellow are where I would expect, but the red is 1/2 way down from the blue, and the orange is at the very bottom left. What am I missing here?
<div style="background-color: Aqua; height: 195px; width: 800px;">
<div style="background-color: Yellow; display: inline-block; width: 18%; height: 100%; margin: 0px 5px 0px 0px;">
<!--Freq holder-->
<fieldset style="height:85%;">
<legend>Frequency</legend><br />
<input type="radio" name="freq" value="Daily" />Daily<br /><br />
<input type="radio" name="freq" value="Weekly" />Weekly<br /><br />
<input type="radio" name="freq" value="Monthly" />Monthly
</fieldset>
</div>
<div style="background-color: Red; display: inline-block; width: 32%; height: 100%; margin: 0px 5px 0px 0px;">
Date holder
</div>
<div style="background-color: Orange; display: inline-block; width:48%; height: 100%;">
Repeat holder
</div>
</div>