scss SASS边距和填充助手循环。生成.m-t-10类型辅助类。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss SASS边距和填充助手循环。生成.m-t-10类型辅助类。相关的知识,希望对你有一定的参考价值。

/*
  THIS IS THE GENERATED FILE THAT IS PRODUCED USING THE SIMPLE LOOP SHOWN ABOVE
*/


.m-t-5 {
  margin-top: 5px; }

.p-t-5 {
  margin-top: 5px; }

.m-b-5 {
  margin-bottom: 5px; }

.p-b-5 {
  margin-bottom: 5px; }

.m-l-5 {
  margin-left: 5px; }

.p-l-5 {
  margin-left: 5px; }

.m-r-5 {
  margin-right: 5px; }

.p-r-5 {
  margin-right: 5px; }

.m-t-10 {
  margin-top: 10px; }

.p-t-10 {
  margin-top: 10px; }

.m-b-10 {
  margin-bottom: 10px; }

.p-b-10 {
  margin-bottom: 10px; }

.m-l-10 {
  margin-left: 10px; }

.p-l-10 {
  margin-left: 10px; }

.m-r-10 {
  margin-right: 10px; }

.p-r-10 {
  margin-right: 10px; }

.m-t-15 {
  margin-top: 15px; }

.p-t-15 {
  margin-top: 15px; }

.m-b-15 {
  margin-bottom: 15px; }

.p-b-15 {
  margin-bottom: 15px; }

.m-l-15 {
  margin-left: 15px; }

.p-l-15 {
  margin-left: 15px; }

.m-r-15 {
  margin-right: 15px; }

.p-r-15 {
  margin-right: 15px; }

.m-t-20 {
  margin-top: 20px; }

.p-t-20 {
  margin-top: 20px; }

.m-b-20 {
  margin-bottom: 20px; }

.p-b-20 {
  margin-bottom: 20px; }

.m-l-20 {
  margin-left: 20px; }

.p-l-20 {
  margin-left: 20px; }

.m-r-20 {
  margin-right: 20px; }

.p-r-20 {
  margin-right: 20px; }

.m-t-25 {
  margin-top: 25px; }

.p-t-25 {
  margin-top: 25px; }

.m-b-25 {
  margin-bottom: 25px; }

.p-b-25 {
  margin-bottom: 25px; }

.m-l-25 {
  margin-left: 25px; }

.p-l-25 {
  margin-left: 25px; }

.m-r-25 {
  margin-right: 25px; }

.p-r-25 {
  margin-right: 25px; }

.m-t-30 {
  margin-top: 30px; }

.p-t-30 {
  margin-top: 30px; }

.m-b-30 {
  margin-bottom: 30px; }

.p-b-30 {
  margin-bottom: 30px; }

.m-l-30 {
  margin-left: 30px; }

.p-l-30 {
  margin-left: 30px; }

.m-r-30 {
  margin-right: 30px; }

.p-r-30 {
  margin-right: 30px; }

.m-t-35 {
  margin-top: 35px; }

.p-t-35 {
  margin-top: 35px; }

.m-b-35 {
  margin-bottom: 35px; }

.p-b-35 {
  margin-bottom: 35px; }

.m-l-35 {
  margin-left: 35px; }

.p-l-35 {
  margin-left: 35px; }

.m-r-35 {
  margin-right: 35px; }

.p-r-35 {
  margin-right: 35px; }

.m-t-40 {
  margin-top: 40px; }

.p-t-40 {
  margin-top: 40px; }

.m-b-40 {
  margin-bottom: 40px; }

.p-b-40 {
  margin-bottom: 40px; }

.m-l-40 {
  margin-left: 40px; }

.p-l-40 {
  margin-left: 40px; }

.m-r-40 {
  margin-right: 40px; }

.p-r-40 {
  margin-right: 40px; }

.m-t-45 {
  margin-top: 45px; }

.p-t-45 {
  margin-top: 45px; }

.m-b-45 {
  margin-bottom: 45px; }

.p-b-45 {
  margin-bottom: 45px; }

.m-l-45 {
  margin-left: 45px; }

.p-l-45 {
  margin-left: 45px; }

.m-r-45 {
  margin-right: 45px; }

.p-r-45 {
  margin-right: 45px; }

.m-t-50 {
  margin-top: 50px; }

.p-t-50 {
  margin-top: 50px; }

.m-b-50 {
  margin-bottom: 50px; }

.p-b-50 {
  margin-bottom: 50px; }

.m-l-50 {
  margin-left: 50px; }

.p-l-50 {
  margin-left: 50px; }

.m-r-50 {
  margin-right: 50px; }

.p-r-50 {
  margin-right: 50px; }
/*
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:

.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.

.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels

The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.

*/

$spaceamounts: (5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 75, 100); // Adjust this to include the pixel amounts you need.
$sides: (top, bottom, left, right); // Leave this variable alone

@each $space in $spaceamounts {
  @each $side in $sides {
    .m-#{str-slice($side, 0, 1)}-#{$space} {
      margin-#{$side}: #{$space}px !important;
    }
  
    .p-#{str-slice($side, 0, 1)}-#{$space} {
      padding-#{$side}: #{$space}px !important;
    }
  }
}


/*
  RUN GULP to generate the classes. Now you can use these helpers to customize spacing on HTML elements.
*/

以上是关于scss SASS边距和填充助手循环。生成.m-t-10类型辅助类。的主要内容,如果未能解决你的问题,请参考以下文章

bootstrap 3.x 中是不是有相当于 m-t-1 类的 bootstrap 4.x?

边距和填充之间的区别?

搜索、输入、按钮边距和填充

段落之间垂直间距的 CSS 框模型(边距和填充)

100% 宽度减去边距和填充 [重复]

以编程方式将边距和/或填充分配给标签