Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_box-sizing.scss « css3 « compass « deprecated-compass « fork-versions « fixtures « test - github.com/JohnAlbin/normalize-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50aa5b6b886f8dd06f64931d103314a0796bab4b (plain)
1
2
3
4
5
6
7
8
9
@mixin box-sizing($value) {
  @if support-legacy-browser(firefox, "28") {
    -moz-box-sizing: $value;
  }
  @if support-legacy-browser(safari, "5") or support-legacy-browser(chrome, "9") {
    -webkit-box-sizing: $value;
  }
  box-sizing: $value;
}