Sha256: 2684ef69eac901920906721e47cc9f2b3f04bb8f5fbf5fc80a89ad3d94ad085f
Contents?: true
Size: 380 Bytes
Versions: 124
Compression:
Stored size: 380 Bytes
Contents
/*------------------------------------*\ #BOX-SIZING \*------------------------------------*/ /** * Set the global `box-sizing` state to `border-box`. * * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice * paulirish.com/2012/box-sizing-border-box-ftw */ html { box-sizing: border-box; } *, *:after, *:before { box-sizing: inherit; }
Version data entries
124 entries across 124 versions & 2 rubygems