scss/utilities/_sizing.scss

scss

// stylelint-disable declaration-no-important

// Width and height

@each $prop, $abbrev in ( w, height: h) {
  @each $size, $length in $sizes {
    .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
  }
}

.mw-100 { max- 100% !important; }
.mh-100 { max-height: 100% !important; }
原文地址:https://www.cnblogs.com/chucklu/p/14215376.html