TIL | SCSS Boolean(논리)

cos·2022년 1월 13일
0
post-thumbnail

SCSS

div {
  color: rgba(10, 20, 30, 0.8);
  background-color: (10, 20, 30, 0.3);
}

⬇️
CSS

div {
  height: 300px;
}

@if조건문에서 사용되는 논리(Boolean)연산에는 '그리고', '또는', '부정'이 있다.

and 그리고
or 또는
not 부정(반대)

profile
The journey is the reward

0개의 댓글