scss Sass用于创建顶部和底部边距类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss Sass用于创建顶部和底部边距类相关的知识,希望对你有一定的参考价值。

/* 
*  Margin top (.mt-xx) and bottom (.mb-xx)
*  mt-10  (margin-top: 10px)
*  mt--10 (margin-top: -10px)
*  mb-10  (margin-bottom: 10px)
*  mb--10 (margin-bottom: -10px)
*/

$margin-heights: "-10","-15","-20","-25","-30","-40","-50","-60","-70","-80","-90","-100","10","15","20","25","30","40","50","60","70","80","90","100";

@each $height in $margin-heights {
  .mt-#{$height} {
    margin-top: #{$height}px;
  }
}

@each $height in $margin-heights {
  .mb-#{$height} {
    margin-bottom: #{$height}px;
  }
}

以上是关于scss Sass用于创建顶部和底部边距类的主要内容,如果未能解决你的问题,请参考以下文章

顺风 css 边距类未将边距应用于组件,做出反应

裁剪带有顶部和底部边距的图像

wxPython 和 STC 边距 - 顶部和底部

scss 流体方面:用于创建固有比率的Sass mixin

安全区域布局指南不适用于情节提要中的 UITableViewController

php 在全局设置(Builder UI)中添加所有方向,即顶部,右侧,底部和左侧的边距