If the text is too long or a pic too big in one of my CSS "frames" it throws everything out of whack! Anyway to prevent this?
Here is my HTML:
<html>
<head>
<title>My Title</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<div id="frame">
<div id="bannerleft">
</div>
<div id="bannerright">
This is banner right
</div>
<div id="mainleft">
This is main left
</div>
<div id="mainright">
This is main right
</div>
<div id="bottomleft">
This is bottom left
</div>
<div id="bottomright">
This is bottom right
</div>
<div id="footer">
This is the footer
</div>
</div>
</body>
</html>
*************************
Here is my css:
<style type="text/css">
<!--
#frame {
width:660px;
margin-right:auto;
margin-left:auto;
margin-top:0px;
padding:0px;
text-align:left;
}
#bannerleft {
float:left;
width:530px;
height:75px;
background:#fff;
border-left:2px solid #000;
border-top:2px solid #000;
border-right:2px solid #000;
border-bottom:2px solid #000;
margin-right:0px;
padding-bottom:0px;
}
#bannerright {
float:left;
width:130px;
height:75px;
background:#fff;
border-left:2px solid #000;
border-top:2px solid #000;
border-right:2px solid #000;
border-bottom:2px solid #000;
margin-right:0px;
padding-bottom:0px;
}
#mainleft {
float:left;
width:530px;
height:275px;
background:#fff;
border-left:2px solid #000;
border-top:2px solid #000;
border-right:2px solid #000;
border-bottom:2px solid #000;
margin-right:0px;
padding-bottom:0px;
}
#mainright {
float:left;
width:130px;
height:275px;
background:#fff;
border-left:2px solid #000;
border-top:2px solid #000;
border-right:2px solid #000;
border-bottom:2px solid #000;
margin-right:0px;
padding-bottom:0px;
}
#bottomleft {
float:left;
width:530px;
height:160px;
background:#fff;
border-left:2px solid #000;
border-top:2px solid #000;
border-right:2px solid #000;
border-bottom:2px solid #000;
margin-right:0px;
padding-bottom:0px;
}
#bottomright {
float:left;
width:130px;
height:160px;
background:#fff;
border-left:2px solid #000;
border-top:2px solid #000;
border-right:2px solid #000;
border-bottom:2px solid #000;
margin-right:0px;
padding-bottom:0px;
}
#footer {
float:left;
width:660px;
height:20px;
background:#fff;
border-left:2px solid #000;
border-top:2px solid #000;
border-right:2px solid #000;
border-bottom:2px solid #000;
margin-right:0px;
padding-bottom:0px;
}
-->
</style>