McCry
Mitglied
Hi,
auf meiner Website habe ich 3 Hauptdivcontainer (head, content, foot).
Mein Problem:
Der Text, der im Content-Div angezeigt werden soll, wird im Foot-Div angezeigt.
	
	
	
		
Css:
	
	
	
		
				
			auf meiner Website habe ich 3 Hauptdivcontainer (head, content, foot).
Mein Problem:
Der Text, der im Content-Div angezeigt werden soll, wird im Foot-Div angezeigt.
		Code:
	
	<div id="design">
    <div id="head"></div>
    <div id="content">
        <div class="unternavi">
            HALLO
        </div>
        <div class="content">
            Hallo
        </div>
    </div>
    <div id="foot"></div>
</div>
	Css:
		Code:
	
	body {
    width: auto;
    height: auto;
    background-image: url(../pics/bg.png);
    background-attachment: fixed;
}
#design{
    width: 1200px;
    height: auto;
    margin-left:auto;
    margin-right:auto;
}
#head{
    width: 1200px;
    height: 320px;
    background-image: url(../pics/head.png);
}
#content{
    width: 1200px;
    height: auto;
    background-image: url(../pics/content.png);
}
.unternavi{
    width: 150px;
    height: auto;
    float: left;
    margin-left: 130px;
}
.content{
    width: 900px;
    height: auto;
    float: right;
}
#foot{
    width: 1200px;
    height: 120px;
    background-image: url(../pics/foot.png);
}