hallo gemeinschaft
habe folgenden code gebastelt und möchte nun im mittleren bereich neben dem content rechts und links container bauen, die variable sind und der linke container bis an den linken rand des browsers geht und der rechte an den rechten rand -
habe folgenden code gebastelt und möchte nun im mittleren bereich neben dem content rechts und links container bauen, die variable sind und der linke container bis an den linken rand des browsers geht und der rechte an den rechten rand -
PHP-Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>3 spalten, header, footer, made by kapetanov</title>
<style type="text/css">
<!--
body{
text-align:center;
margin:0;
padding:0;
}
#container{
width:880px;
margin:0 auto;
text-align:left;
height:690px;
}
#header{
width: 100%;
height:50px;
background-image: url(bg_kopf.jpg);
}
#header1{
width: 100%;
background-color: #f0eee3;
height:36px;
}
#content{
width:880px;
float:left;
background-color: #CCFF99;
height:690px;
}
#footer{
background-color: #f0eee3;
width: 100%;
height:100%;
}
-->
</style>
</head>
<body>
<div id="header"></div>
<div id="header1"></div>
<div id="left">content</div>
<div id="container">
<div id="content">content</div>
</div>
<div id="right">content</div>
<div id="footer">footer</div>
</body>
</html>
Kommentar