| 
				
				CSS padding problems
			 
 I'm building a site using CSS and am trying to ensure it displays well on IE and Mozilla/safari. I have mnaged to iron out and find workarounds for most of their incompatibilities but I can not find out why Mozilla adds the padding attached to a box to it's overall width whilst IE does not
 ie
 #box{
 width: 100px
 padding: 10px
 }
 will give a box 100 px wide in IE but 120 px wide with Mozilla
 
 why can't all the browsers just get along with each other isn't that why we have w3c standards>
 |