Horje
sass loops 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
css focus border radius Code Example css focus border radius Code Example
arrow left css Code Example arrow left css Code Example
removing input border shadow Code Example removing input border shadow Code Example
linux remove files except Code Example linux remove files except Code Example
hover show scrollbar css Code Example hover show scrollbar css Code Example

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