Der code funktioniert zum Zentrieren bei IE und Firefox bei safari z.b nicht?
gibts da eine lösung?
gibts da eine lösung?
HTML:
body {
margin:0px auto;
text-align:center;
}
#wrapper {
text-align:center;
margin:0px auto;
width:500px;
}
#header {
text-align:center;
margin:0px auto;
width:500px;
height:300px;
background:#090;
}
#navi {
width:500px;
height:100px;
background:#006;
}
#content {
width:500px;
height:auto;
background:#666;
}
#footer {
height:50px;
width:500px;
background:#C09;
}
HTML:
<div id="wrapper">
<div id="header">
</div>
<div id="navi">
</div>
<div id="content">
</div>
<div id="footer">
</div>
</div>