jmccole83
1/9/2018 - 11:42 AM

@for All Header tags in SASS

Target all header tags with a for loop in SASS

@for $index from 1 through 6 {
  h#{$index} {
    // style code
  }
}
@for $index from 1 through 100 {
  .vw-#{$index} {
    width: #{$index}vw;
  }
}