Hi.
Ich habe immer Tabellen benutzt und möchte jetzt auf CSS umsteigen. Habe mir einige Infos im Netz gelesen, so weit, so gut. Habe aber ein paar Probleme.
Ich habe so eine Anordnung:
HEADER
LEFTRIGHT
FOOTER
Die Vorlage, die ich verwendet habe, ist nicht so enigestellt, wie ich sie haben möchte. Momentan ist alles zentriert und fängt oben an.
Ich möchte es aber so haben, dass der Header immer oben ist, der Footer immer am unteren Browserrand...und leftright wird unten je nach Browsergröße erweitert...aufgefüllt.
Wie geht das? Wäre toll, wenn mir wer weiterhelfen könnte.
Hier mein Code:
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
#wrapper {
margin: 0 auto;
width: 800px;
}
#header {
color: #000000;
width: 788px;
float: left;
padding: 0px;
border-bottom: 6px solid #0000ff;
border-left: 6px solid #0000ff;
border-right: 6px solid #0000ff;
border-top: 6px solid #0000ff;
height: 130px;
margin: 0px 0px 0px 0px;
background: #ffffff;
}
#leftcolumn {
float: left;
color: #000000;
border-bottom: none;
border-left: 6px solid #0000ff;
border-right: none;
border-top: none;
background: #ffffff;
margin: 0px 0px 0px 0px;
padding: 0px;
height: 400px;
width: 194px;
}
#rightcolumn {
float: right;
color: #000000;
border-bottom: none;
border-left: none;
border-right: 6px solid #0000ff;
border-top: none;
background: #ffffff;
margin: 0px 0px 0px 0px;
padding: 0px;
height: 400px;
width: 594px;
}
#footer {
width: 788px;
height: 30px;
clear: both;
color: #000000;
border-bottom: 6px solid #0000ff;
border-left: 6px solid #0000ff;
border-right: 6px solid #0000ff;
border-top: none;
background: #ffffff;
margin: 0px 0px 0px 0px;
padding: 0px;
}
Ich habe immer Tabellen benutzt und möchte jetzt auf CSS umsteigen. Habe mir einige Infos im Netz gelesen, so weit, so gut. Habe aber ein paar Probleme.
Ich habe so eine Anordnung:
HEADER
LEFTRIGHT
FOOTER
Die Vorlage, die ich verwendet habe, ist nicht so enigestellt, wie ich sie haben möchte. Momentan ist alles zentriert und fängt oben an.
Ich möchte es aber so haben, dass der Header immer oben ist, der Footer immer am unteren Browserrand...und leftright wird unten je nach Browsergröße erweitert...aufgefüllt.
Wie geht das? Wäre toll, wenn mir wer weiterhelfen könnte.
Hier mein Code:
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
#wrapper {
margin: 0 auto;
width: 800px;
}
#header {
color: #000000;
width: 788px;
float: left;
padding: 0px;
border-bottom: 6px solid #0000ff;
border-left: 6px solid #0000ff;
border-right: 6px solid #0000ff;
border-top: 6px solid #0000ff;
height: 130px;
margin: 0px 0px 0px 0px;
background: #ffffff;
}
#leftcolumn {
float: left;
color: #000000;
border-bottom: none;
border-left: 6px solid #0000ff;
border-right: none;
border-top: none;
background: #ffffff;
margin: 0px 0px 0px 0px;
padding: 0px;
height: 400px;
width: 194px;
}
#rightcolumn {
float: right;
color: #000000;
border-bottom: none;
border-left: none;
border-right: 6px solid #0000ff;
border-top: none;
background: #ffffff;
margin: 0px 0px 0px 0px;
padding: 0px;
height: 400px;
width: 594px;
}
#footer {
width: 788px;
height: 30px;
clear: both;
color: #000000;
border-bottom: 6px solid #0000ff;
border-left: 6px solid #0000ff;
border-right: 6px solid #0000ff;
border-top: none;
background: #ffffff;
margin: 0px 0px 0px 0px;
padding: 0px;
}