diff options
| author | Mark Otto <[email protected]> | 2013-08-12 21:26:43 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-12 21:26:43 -0700 |
| commit | 40723c8716d79e5f27791caa2da5787151a6ee6b (patch) | |
| tree | d3bf1ad16bc3f5bc51ead345dde2385bffecce95 /dist/css/bootstrap.css | |
| parent | 0b338b0dc76fa3cf321c9a509e892bad41fd626b (diff) | |
| download | bootstrap-40723c8716d79e5f27791caa2da5787151a6ee6b.tar.xz bootstrap-40723c8716d79e5f27791caa2da5787151a6ee6b.zip | |
fixes #9400: add box-sizing to pseudo elements as well
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 9046102c9..0987b7a1d 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -286,7 +286,9 @@ table { } } -* { +*, +*:before, +*:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; |
