PHP expert |
|
Ik wil mijn div dus 100% hoog hebben
ik heb hier enkele topics bekeken en daar wel een oplossing gevonden: html,body {height: 100% } maar als ik dat doe + height: 100% op mijn sidebars + content is me site in 1x 200% hoog :p
body, html {
font-size: 11px;
font-family: Verdana;
color: #FFFFFF;
text-align: left;
background-color: #a0a0a0;
height: 100%;
}
.bar-l {
background-image: url("images/bar-l.jpg");
background-repeat: repeat-y;
width: 15px;
height: 100%;
float: left;
}
.bar-r {
background-image: url("images/bar-r.jpg");
background-repeat: repeat-y;
width: 15px;
height: 100%;
float: left;
}
#content {
width: 870px;
background-color: #222222;
float: left;
}
body, html { font-size: 11px; font-family: Verdana; color: #FFFFFF; text-align: left; background-color: #a0a0a0; height: 100%; } .bar-l { background-image: url("images/bar-l.jpg"); background-repeat: repeat-y; width: 15px; height: 100%; float: left; } .bar-r { background-image: url("images/bar-r.jpg"); background-repeat: repeat-y; width: 15px; height: 100%; float: left; } #content { width: 870px; background-color: #222222; float: left; }
screen:
http://img472.i...een7ge.jpg
de content die onder de header moet komen staat een paar straten onder in beeld
|