rvj wrote: > > In the example below, Mozilla seems to add borders to the outside of the > specified box box height and width causing window overflow. Borders are applied outside the content area. http://www.w3.org/TR/REC-CSS2/box.html#box-dimensions > a) Is it possible to apply borders internally to the box, like IE, or is > this a bug?. It is not possible to apply borders internally to a box in CSS2. The CSS3 UI *working draft* includes a box-sizing property that may add this capability to CSS3: http://www.w3.org/TR/2000/WD-css3-userint-20000216.html#box-sizing However, you can often use the containing block to get the same effect; when the width is 'auto' (the default), the content width will stretch to fill the containing block. http://www.w3.org/TR/REC-CSS2/visudet.html#q6
