Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save touhid-rahman/998c6c4629c778746fe00e240132e3f8 to your computer and use it in GitHub Desktop.

Select an option

Save touhid-rahman/998c6c4629c778746fe00e240132e3f8 to your computer and use it in GitHub Desktop.
SASS List - Rainbow
<div class="color red"></div>
<div class="color orange"></div>
<div class="color yellow"></div>
<div class="color green"></div>
<div class="color blue"></div>
<div class="color indigo"></div>
<div class="color violet"></div>
$rainbow: red, orange, yellow, green, blue, indigo, violet
.color
width: 100px
height: 200px
float: left
@each $color in $rainbow
.#{$color}
background-color: $color
.color {
width: 100px;
height: 200px;
float: left;
border: 1px solid black;
}
<div class="color red"></div>
<div class="color orange"></div>
<div class="color yellow"></div>
<div class="color green"></div>
<div class="color blue"></div>
<div class="color indigo"></div>
<div class="color violet"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment