HTML interesse |
|
Hallo,
Wat is nu eigenlijk het beste? Ik zie bijna iedereen een wrap of container element gebruiken om de layout te centreren en dergelijke. Ik gebruik hier gewoon het body element voor. Mijn css ziet er dan als volgt uit:
html {
margin: 0;
padding: 0;
border: 0;
background: url(../img/bg.gif);
background-repeat:repeat-x;
background-color:#4e473e;
text-align: left;
}
* html body { height: 100%; }
body {
margin: 0 auto;
width: 950px;
font-family: "Verdana", Trebuchet MS, Arial, Tahoma;
font-size: 11px;
color: #272321;
}
html { margin: 0; padding: 0; border: 0; background: url(../img/bg.gif); background-repeat:repeat-x; background-color:#4e473e; text-align: left; } * html body { height: 100%; } body { margin: 0 auto; width: 950px; font-family: "Verdana", Trebuchet MS, Arial, Tahoma; font-size: 11px; color: #272321; }
Wat is beter? Er wel gewoon een container element omheen gooien?
|