Web Developer

SASS Section 8 – If and Loops

  • Conditional statement: @if…@else if …@else
    • such as: @if a==b {body {color: red;}} @else if a < b {body {color: green;}} @else {body {color: blue;}}
  • Loops
    • @for $i from 1 through 6 { statements }
    • @each $var1, $var2 in $mapVariable {statements, and $var1 represent property in map, $var2 represent value}
    • @while #index < 6 {statement }