diff options
| author | Mark Otto <[email protected]> | 2014-01-16 20:00:28 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-01-16 20:00:28 -0800 |
| commit | 380019ccb28ef1205e0a114e386ab2cc4281efb4 (patch) | |
| tree | 006cc3724571b32938f0143c0d8ec702b433dcfa /dist/css/bootstrap.css | |
| parent | d07e8fece474afee9de7edaf6359e60920e8268f (diff) | |
| download | bootstrap-380019ccb28ef1205e0a114e386ab2cc4281efb4.tar.xz bootstrap-380019ccb28ef1205e0a114e386ab2cc4281efb4.zip | |
Split box-sizing reset for faster rendering
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index d6f4efc79..26257d194 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -251,7 +251,11 @@ table { border: 1px solid #ddd !important; } } -*, +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} *:before, *:after { -webkit-box-sizing: border-box; |
