سؤال

I currently use box-sizing:border-box on all elements * but I've noticed this is conflicting with the packery.js plugin I'm using on each of the elements and I was wondering if there is a way that I can override or reset back to the default for these items?

هل كانت مفيدة؟

المحلول

Set it back to the default

box-sizing: content-box

W3C documentation

نصائح أخرى

Sure. The default style for box-sizing is content-box:

.something {  box-sizing: content-box }

MDN

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top