By default, the text within a legend does not wrap in Internet Explorer 6, 7 or 8:
The following workaround will enable legend text to wrap:
<legend><span class="wrap">Legend Text</span></legend>
legend {
width: 100%; /* allow legends to wrap in IE 8 */
}
legend .wrap {
display: block; width: 100%; white-space: normal; /* allow legends to wrap in IE 6 & 7 */
}