Forum Moderators: not2easy
body {
background: #CCC;
}
#wrapper {
width: 780px;
margin-right: auto;
margin-left: auto;
text-align: center;
background: #FFF;
border: 1px solid #DADAD0;
}
#box {
width: 758px;
margin: 5px;
padding: 5px;
background: #CCC;
}
<body>
<div id="wrapper">
<div id="box">
some random text<br>
including a break
</div>
</div>
</body>
the above renders ok in firebird, but incorrectly in ie6.
If i change the #box width to 768px, it works ok in ie6, but fails in firebird.
help please?