Now i don't know if this will help but using span may help, i haven't checked this out in ie (idea came from
http://stackoverflow.com/questions/2...splay-inline):
Code:
<html>
<head>
<style type="text/css">
#left-box
{
float:left;
border:1px solid green;
width:300px;
}
#middle-box
{
float:left;
border:1px solid green;
width:300px;
margin-left:10px;
}
#right-box
{
float:left;
border:1px solid green;
width:300px;
margin-left:10px;
}
</style>
</head>
<body>
<span id="left-box">hi there</span>
<span id="middle-box">hi there</span>
<span id="right-box">hi there</span>
</body>
</html>