I have a container that I am calling #profile-grid and I want it to be 330px wide. It contains an image that is 330px wide and an inline list below the image that is 330px wide with a 1px border all around. I want the list and image to be exactly the same width. In IE it lines up perfect, but in Chrome it is 2px too short. What am I doing wrong? http://jsfiddle.net/ZPQUP/13/
|
|
The problem is, as your title suggested, the box model. Your best bet is to just explicitly set the box model, and then use a polyfill to make it work for older browsers. Paul Irish describes the problem and solution here: http://paulirish.com/2012/box-sizing-border-box-ftw/ I've shown what this looks like in an updated fiddle here: http://jsfiddle.net/mstauffer/ZPQUP/14/ Essentially, the different box models differ on whether borders and paddings are included in or added externally to the width. |
|||
|
|
|
Your ... in the good browsers. In older versions of IE, you'll see a problem. Use a valid DOCTYPE and that will be resolved. |
|||
|
|
|
DEMO: HTML:
CSS:
NOTES:
|
||||
|
|
|
To avoid this issue, it is ideal to not mix In your case, if you simply remove the
|
||||
|
|