DivBox soll sich ausbreiten

Status
Nicht offen für weitere Antworten.

leo_

Grünschnabel
Hallo,

http://cms.leoxikon.de die div-box #innercontent sollte sich doch eigentlich soweit ausbreiten wie es geht, doch das tut sie nicht, sie ist nur so breit wie der Text dadrin. Wie kann ich das ändern? Hier ist nochmal der Code:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>CMS: Startseite</title> 
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
	<style type="text/css">
		#content {
			margin: 0 auto;
			text-align: justify;
			width: 90%;
			background-color: #d4d4d4;  
			border: 1px solid #ffffff;
			padding: 10px;
		}
		#menu {
			float: left;
			width: 120px;
			border: 1px solid #aaaaaa;
			padding: 5px;
			background-color: #DDDDDD;
		}
		#menu_right {
			float: right;
			width: 120px;
			margin-left: 20px;
			border: 1px solid #aaaaaa;
			padding: 5px;
			background-color: #DDDDDD;
		}
		#innercontent {
			float: left;
			margin-left: 20px;
			border: 1px solid #aaaaaa;
			padding: 5px;
			background-color: #DDDDDD;
		}
		#banner {
			height: 60px;
		}
		
		body {
			font-family: verdana; 
			font-size: 12px;
			background-color: gray;
		}
		
		.header {
			background-color: #ffffff;
			border: 1px solid gray;
		}
	</style>
  </head>
  <body>
  	<div id="content">
		<div id="banner">
			Banner
		</div>
		<div id="menu">
			<div class="header">
				<strong>Navigation</strong>
			</div>
			<br>
			<a href="/" title="Startseite">News</a><br>

			<hr>


				<a href="/register.php">Registrieren</a><br>
				<a href="/login.php">Einloggen</a><br>

		</div>
		<div id="innercontent">
			<div class="header">
				<strong>Startseite</strong>
			</div>
			<br>
			 
	<div style="border: 1px solid #000000;padding:2px;background-color:#B5B5B5">
		Von: <b>leo</b> am <i>14.07.05</i> um <i>04:41</i><hr>
		Test - News
		<hr>
		<b><a href="/news.php?mode=view_comments&amp;id=1">Kommentare [2]</a></b>
	</div>
	<br>


		</div>
		<div id="menu_right">
			<div class="header">
				<strong>Rechte Navigation</strong>
			</div>
		</div>
		<br style="clear:both;">
	</div>
  </body>
</html>

Danke für eure Hilfe und grüße,
Leo
 
Status
Nicht offen für weitere Antworten.
Zurück