If Statements
Lesson 12Author : GOUP
Last Updated : September, 2020
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);
}