Hi ich versuche gerade html und CSS zu lernen. Jetzt wollte jetzt mal ein Layout machen wo die navigation links neben dem Inhalt ist und rechts noch ein extra spalte für werbung oder so ist(auch neben dem Inhalt). aber i-wie klappt das ganze noch nicht so ganz....;ugl
Hier mal ein Bild wie es jetzt aussieht.

Ich möchte aber dass das Navi links und Navi rechts neben dem Inhalt sind.
Hier mal meine css datei:
und meine Index.html
Ich hoffe jemand kann mir helfen
Hier mal ein Bild wie es jetzt aussieht.

Ich möchte aber dass das Navi links und Navi rechts neben dem Inhalt sind.
Hier mal meine css datei:
HTML:
*
{
padding: 0px;
margin: 0px;
}
html, body
{
height: 100%;
}
#wrapper
{
min-height: 100%;
}
#header
{
background-color: #800000;
}
#inhalt
{
background-color: #FFFF00;
}
#inhalt h1
{
padding-bottom: 5px;
}
#inhalt p
{
padding-bottom: 8px;
}
#navi-left
{
background-color: #FF8000;
width: 150px;
float: left;
}
#navi-right
{
background-color: #800080;
width: 150px;
float: right;
}
#footer
{
background-color: #808080;
height: 1.5em;
margin-top: -1.5em;
}
und meine Index.html
HTML:
<body>
<div id="wrapper">
<div id="header">
<p>Header und Logo</p>
</div>
<div id="inhalt">
<h1>Überschrift</h1>
<p>Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt Inhalt </p>
</div>
</div>
<div id="navi-left">
<p>Navi-left</p>
</div>
<div id="navi-right">
<p>Navi-right</p>
</div>
<div id="footer">
<p>Footer</p>
</div>
</body>
Ich hoffe jemand kann mir helfen
