If Statements
Lesson 12Author : 🦒
Last Updated : October, 2017
Code
@mixin text-style($size) {
font-size: $size;
@if $size > 20px {
color: blue;
} @elseif $size = 20px {
color: red;
} @else {
color:green;
}
header {
@include text-style(21px);
}