Hallo Leute
Könnte mir vielleicht jemand bitte weiterhelfen?
Versuch den Inhalt egal wie lang mit einen Rand über die ganze Seite mit einen CSS Container zu generieren. Ich hatte leider selbst nach h kein erfolg.
Konnte auch eine gute Webseite mit einer Lsg finden. Jedoch kann ich nicht verstehen wieso des nicht bei mir funktioniert?
http://www.communitymx.com/content/article.cfm?page=…
Hier noch mein CSS code:
* {
padding: 0;
margin: 0;
}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;height:100%;
}
p {
padding: 10px;
}
#wrapper {
margin: 0 auto;
width: 1001px;
border-right-width: 8px;
border-left-width: 8px;
border-right-style: solid;
border-left-style: solid;
border-right-color: #4BF377;
border-left-color: #4BF377; min-height:100%;
}
#content {
float: left;
color: #333;
background: #FFFFFF;
width: 1001px;
display: inline;
}
#header {
color: #333;
width: 1001px;
float: left;
height: 75px;
background: #6B6659; height: auto;
}
#navigation {
float: left;
width: 1001px;
height: 25px;
color: #333;
background: #8AA1B6; height: auto;
und mein HTML:
This is the Header
This is the Navigation
Wär echt dankbar für jede Lsg.