Answers for "scss conditional style"

CSS
0

scss conditional style

$p: 3;

@while $p < 5 {
  .item-#{$p} {
    
        color: red;
    
        $p : $p + 1;
  
    }
}
Posted by: Guest on April-21-2021

Browse Popular Code Answers by Language