Does adding a box-shadow property to a div change it's dimension? For example, what is the correct width in compliant browsers for the div MyDiv?
- 202px (borders and width)
- 203px (borders width and horizontal shadow size)
- 207px (borders width and shadow blur)
None of the above
div.MyDiv { width:200px; border:1px solid #cccccc; -moz-box-shadow:1px 1px 7px rgba(153, 153, 153, 0.2); }
Many thanks!