Hallo Leute brauche dringend HLFE
Wie krieg ich den footer (Fuss bei css) o das er immer am Boden ist? Natürlich soll er mit dem Textcontainer mitwachsen
Wahrscheinlich sehr einfach aber bitte schaut euch das mal an
#Main {
position:absolute;
width:100%;
height:1324px;
z-index:1;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
#Kopf {
position: absolute;
height:200px;
z-index:1;
background-color: #1C548D;
width: 100%;
left: 0px;
top: 0px;
}
#Kopf2 {
position:absolute;
width:100%;
height:30px;
z-index:3;
left: 0px;
top: 200px;
background-color: #62A0DF;
}
#text {
position: relative;
width:670px;
top: 220px;
right: 0%;
margin:auto;
border-top: solid 20px #fff;
background-color:#fff;
vertical-align:top;
height:auto;
padding-top: 0px;
padding-bottom: 20px;
padding-left: 30px;
padding-right:30px;
letter-spacing:0px;
color:#000;
font-size: 85%;
line-height: 22px;
font-family: tahoma, verdana, arial, helvetica, verdana, tahoma, sans-serif;
background-image:url(images/fv1.jpg);
background-repeat:repeat-x;
background-position: 0% 0%;
page-break-before: always;
text-align: left;
overflow: visible;
z-index: 1;
}
#Fuss {
position:absolute;
width:100%;
height:115px;
z-index:2;
background-color: #1C548D;
bottom: 0%;
left: 0px;
}
und hier noch der HTML Code
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<link rel="stylesheet" href="format.css" type="text/css"/>
<link rel="stylesheet" href="menue.css" type="text/css"/>
</head>
<body>
<div id="Kopf">
</div>
<div id="Fuss"></div>
<div id="Kopf2"></div>
<div id="text">
Text hier rein
</div>
</body>
</html>
DANKE DANKE