Lid |
|
Beste,
ik wil een wrapper (container) die 100% hoog is. Dit werkt prima maar nu is hij op elke browser (als er geen content in mijn wrapper staat) toch nog iets te lang. Ik krijg nu ook zonder content in mijn wrapper een verticale schuifbalk om te scrollen.
Kan iemand mij vertellen hoe ik dit wel correct kan aanpassen?
@charset "utf-8";
/* overal reset */
* {
margin:0px;
padding:0px;
font-size:12px;
outline:none;
border:none;
}
/* overal settings */
html {
height:100%;
}
body {
height:100%;
background:#CCC;
}
/* website */
.wrapper {
width:980px;
min-height:100%;
margin:0px auto;
background:#FFF;
padding:10px;
box-shadow:0px 0px 5px #000;
-webkit-box-shadow:0px 0px 5px #000;
-moz-box-shadow:0px 0px 5px #000;
}
@charset "utf-8"; /* overal reset */ * { margin:0px; padding:0px; font-size:12px; outline:none; border:none; } /* overal settings */ html { height:100%; } body { height:100%; background:#CCC; } /* website */ .wrapper { width:980px; min-height:100%; margin:0px auto; background:#FFF; padding:10px; box-shadow:0px 0px 5px #000; -webkit-box-shadow:0px 0px 5px #000; -moz-box-shadow:0px 0px 5px #000; }
|