Here is a very simple html page. WIth IE(checked 8,10), the text exceeds its container. But such problem doesn't occur with FF, Chrome.
<!DOCTYPE html>
<html>
<body>
<div style="display:inline-block;border:1px solid black">
<table>
<caption><nobr>I' m table caption</nobr></caption>
</table>
</div>
</body>
</html>
The table's "caption" tag seems to be the cause. Does someone know why it behaves differently in IE? Thanks.