框大小 css 中的所有元素

Box-sizing all elements in css

这段代码是什么意思?请解释为什么这必须在我的代码中?

*, *:before, *:after {
  box-sizing: inherit;
}

确保所有元素加上在元素之前或之后插入的所有装饰器元素将:include padding and border in the element's total width and height

这很有用,例如,如果您 javascript 需要测量元素的大小,并且您希望确保测量始终包括填充和边框宽度。