Border-box CSS not working properly
问题 I have the following code: http://www.designated.net.au/testbed/test/ body { margin:0; padding:0; width:100%; height:100%; background: #000000; } #page { margin:0% 10% 0% 10%; width:80%; height:1000px; border:solid #333333; border: 0 10px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; background: #fff; } As far as I know that should give me an inner border on the left and right of 10px, but instead I get a border inside the whole thing of about 2px. Any