It seems that in IE, the width includes the padding size. while in FF, the width does not. How can I make both behave the same?
Thanks.
|
It seems that in IE, the width includes the padding size. while in FF, the width does not. How can I make both behave the same? Thanks. |
|||
|
|
If you use a modern version of IE with valid markup, a good doctype, and appropriate headers it will adhere to the standard. Otherwise, you can force modern standards-compliant browsers to use "border-box" via:
The first declaration is needed for Opera, the second is for Firefox, the third is for Webkit and Chrome. Here's a simple test I made years ago for testing what box-sizing declaration your browser supports: http://phrogz.net/CSS/boxsizing.html Note that Webkit (Safari and Chrome) do not support the |
|||||||||||||
|
|
A simple rule is to try to avoid using padding/margin and width property for same element. i.e. Use something similar to this
|
|||
|
|
You probably need to activate standards-compliant mode. Without seeing some code, however, I can't give you any more guidance than that. |
|||
|
|
|
Do you have a doctype declared? When I started coding html I had this problem, and it was from not having a doctype declared. My favorite is:
|
|||
|
|