Hello I have a webpage here:
http://turningheadssalons.com/newabout.htm
And as you can see, the H1 tag that says: "Who We Are" floats underneath it's parent container. The strange thing about this is, is that the inner container is embedded inside of the parent container, which by default, the parent container should expand, based on the content inside of the inner container.
Here's the code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Turning Heads Salon - New Homepage</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="default.css" />
<link rel="stylesheet" type="text/css" href="search.css" />
</head>
<body>
<div id="maincontainer">
<div id="topdiv">
<div id="topdivleft">
<span class="topdivleftfloat"><img src="Images/TurningHeadsLogo.png" alt="Turning Heads Salon"></span>
</div>
<div id="topdivright">
<span class="topdivrightfloatsearch">
<form method="get" action="/search" id="search">
<input name="q" type="text" placeholder="Search..." />
</form>
</span>
<span class="topdivrightfloat">
<ul>
<li><a href="">Home</a></li> \\
<li><a href="">About</a></li> \\
<li><a href="">Services</a></li> \\
<li><a href="">Products</a></li> \\
<li><a href="">Portfolio</a></li> \\
<li><a href="">Request an Appointment</a></li> \\
<li><a href="">Careers</a></li> \\
<li><a href="">Articles</a></li>
</ul>
</span>
</div>
</div>
<div id="infobox">
<div id="infoboxleft">
<h1>Who We Are</h1>
</div>
</div>
<div id="mainfooter">
North Location: 2231 Tamiami Trail, Port Charlotte, FL 941-629-4247 (HAIR)<br>
South Location at Shawn and Company: 4678 Tamiami Trail, Port Charlotte, FL 941-625-0060<br><br>
Hours: Tuesday - Thursday: 9 AM - 7 PM, Friday: 9 AM - 5 PM, Saturday: 9 AM - 4 PM<br>
Special Appointments and Events Available<br><br><br>
<span class="copyright">Copyright 2013 - Turning Heads Salons - Terms and Conditions - Privacy Policy</span>
</div>
</div>
</body>
</html>