I thought the elements inside the purple <div> would expand the <div> so they are always in purple, but now I have to add a height to <div id=“main”> to push the purple container down far enough to contain the image on the left and the text on the right. Can someone explain to me how to make my container contain all the elements and just some without adding the min-height: 250px; to #main? Or do I not understand how to size a <div>?
Thanks.
the_title.css
#container {width: 960px; margin: 0 auto;}
#main {background-color: rgb(120,120,250); padding: 10px 5px 10px 5px; min-height: 250px;}
#display_left {float: left; width: 502px;}
#display_right {float: right; width: 400px;}
title.xhtml
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" media="screen" href="the_title.css" />
<title>the title</title>
</head>
<body>
<div id="container">
<div id="main">
<div>
This is text This is text This is text This is text This is text This is text This is text.
</div>
<div>
<div id="display_left">
<img src="peach.jpg" width="500" height="343"/>
</div>
<div id="display_right">
<div>
This is more text This is more text This is more text This is more text This is more text This is more text vvThis is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text This is more text.
</div>
</div>
</div>
</div>
</div>
</body>
</html>