Scss

46 阅读1分钟

mixin抽离公共样式

image.png

使用@include

image.png @content相当于 @include ipad{}函数体里的东西

//@if @else if
@if $height>500 {
  媒体查询{
  @content
}
@else if $height<600&&&height>500{
  媒体查询{
    @content
}
}
}