stretch混合宏问题

来源:3-1 Layout模块

慕圣5332519

2021-12-26 21:12

请问,在stretch混合宏中,定义是如下:
  position: absolute;
  @if $offset-top {
    top: $offset-top;
  }

  那么 $offset-top 值是0时,编译出来的 CSS 怎么会有 top:0 呢?如果要生成 top:0,应该有 @else 呀?
  position: absolute;
  @if $offset-top {
    top: $offset-top;
  } @else {
    top: 0;
  }
 

写回答 关注

1回答

  • 慕梦前来
    2022-01-03 11:24:24

    这个条件不是一样吗

Sass和Compass必备技能之Compass

结实Compass,通过这个工具来帮助你写出更优秀的CSS

21217 学习 · 76 问题

查看课程

相似问题