Just went crazy why I still had problem with the infamous box model problem with IE when I was designing my skin for DNN.
And I discovered why with DNN I still have this problem, that was supposed to be fixed in IE 6...
This box model problem has been fixed if the IE is running in "standard mode", but not if running in "quirks" mode...
And what does trigger IE to run in quirks mode instead of standard mode?
Mainly it's the lack of DocType definition, or a wrong doctype definition: a doctype definition is wrong if it is missing the URL of the DTD.
And DNN has that problem:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
instead of a more compliant
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd
Simone