This sounds pretty simple, but I am stuck. I need to set a DIV to be 434 pixels wide in IE8. The following is my code. This works in FF, but IE8 always renders the DIV with a width of 414 pixels. Why does it chop off 20 pixels?
<html>
<head>
<style type="text/css">
#box
{
width:434px;
background-color:red;
margin:0;
padding:0;
}
</style>
</head>
<body>
<div id="box"> </div>
</body>
</html>
I've also tried it in strict mode, with the same result.