Firebird and IE seem to handle this differently.
#bla {
width: 800px;
padding: 15px;
}
In IE, I'll have an 800px wide container with 15px of padding on the inside on all 4 sides of the container. In Firebird, I get an 830px (800 + 15 + 15) wide container. Apparently, IE is, once again, dumb because the W3C states that the padding is supposed to be added to the width. :\
#bla {
width: 800px;
padding: 15px;
}
In IE, I'll have an 800px wide container with 15px of padding on the inside on all 4 sides of the container. In Firebird, I get an 830px (800 + 15 + 15) wide container. Apparently, IE is, once again, dumb because the W3C states that the padding is supposed to be added to the width. :\