contao / core

Contao 3 → see contao/contao for Contao 4
GNU Lesser General Public License v3.0
490 stars 214 forks source link

Change the box-sizing of the CSS framework #5215

Open leofeyer opened 11 years ago

leofeyer commented 11 years ago

Change the box sizing of the CSS framework:

-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
michelbalzer commented 11 years ago

+1

But:

“Firefox (16 and older) don't handle the combination of box-sizing and min-height/max-height properly. See this bug for more details: https://bugzilla.mozilla.org/show_bug.cgi?id=308801“ from http://caniuse.com/#search=box-sizing

lionel-m commented 11 years ago

For IE : https://github.com/Schepp/box-sizing-polyfill

leofeyer commented 11 years ago

Good to know there is an IE workaround. However, we are not supporting IE7 anymore, therefore we will not need it.