我想知道有没有办法使用CSS设置div的外部宽度来忽略填充和边框.
当我将div设置为50%宽度时,填充和边框将添加到宽度.
我如何解决没有javascript或jQuery.outerWidth()?
编辑
不想添加另外一个元素
解决方法
I’m wonder if there is way to set outerwidth of a div using css to ignore padding and borders.
您可以使用Box-sizing:border-Box来进行填充和边框的宽度计数:
div { -webkit-Box-sizing: border-Box; -moz-Box-sizing: border-Box; Box-sizing: border-Box; }
见:http://jsfiddle.net/thirtydot/6xx3h/