Horje
scss loop Code Example
loop scss
@for $i from 1 through 6 {
    .grid-#{$i} {
        width: 100px*$i;
    }
}
loops scss
@for $i from 1 through 3 {
  ul:nth-child(3n + #{$i}) {
    background-color: lighten($base-color, $i * 5%);
  }
}
sass loops
$base-color: #036;

@for $i from 1 through 3 {
  ul:nth-child(3n + #{$i}) {
    background-color: lighten($base-color, $i * 5%);
  }
}




loop scss
@for $i from 1 through 3 {
  ul:nth-child(3n + #{$i}) {
   color: blue;
  }
}
scss loop
@each $theme-name, $theme-color in $colors-theme-bo {
  .theme-#{$theme-name} {
    color: $theme-color;
  }
}




Css

Related
wrap text around circle image css Code Example wrap text around circle image css Code Example
display in flexbox Code Example display in flexbox Code Example
ui gradient Code Example ui gradient Code Example
get element with href css Code Example get element with href css Code Example
neumorphism css generator Code Example neumorphism css generator Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9