View Single Post
Old 11-14-2012, 10:46 PM   PM User | #2
Brandnew
New Coder

 
Join Date: Aug 2012
Posts: 50
Thanks: 0
Thanked 11 Times in 11 Posts
Brandnew is an unknown quantity at this point
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>
__________________
1 Corinthians 15:3-4 / Ephesians 2:8-9 - What or Who are you living for?
Brandnew is offline   Reply With Quote