aboutsummaryrefslogtreecommitdiff
path: root/_scss/utilities/_boxsizing.scss
blob: 7e06a3e654ce71cd267124e6f664e0aa7823947a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Box Sizing
//
// The box-sizing property in CSS controls how the box model
// is handled for the element it applies to.
//
// Values: content-box | border-box
// Default: content-box
//
// https://www.w3.org/TR/css-ui-3/#box-sizing
@mixin box-sizing($value: content-box) {
  -webkit-box-sizing: $value;
     -moz-box-sizing: $value;
      -ms-box-sizing: $value;
          box-sizing: $value;
}