Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前box-sizing:border-box在所有元素上使用,*但我注意到这与我在每个元素上使用的 packery.js 插件冲突,我想知道是否有一种方法可以覆盖或重置为这些元素的默认值项目?
box-sizing:border-box
*
将其设置回默认值
box-sizing: content-box
W3C 文档
当然。的默认样式box-sizing是content-box:
box-sizing
content-box
.something { box-sizing: content-box }
MDN