TIL | SCSS @at-root(중첩 탈출)

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

CSS

.list li {
  width: 100px;
  height: 50px;
}

.box {
  width: 100px;
  height: 50px;
}

⬇️

SCSS

.list {
  $w: 100px;
  $h: 50px;

  li {
    width: $w;
    height: $h;
  }

  @at-root .box {
    width: $w;
    height: $h;
  }
}
profile
The journey is the reward

0개의 댓글

관련 채용 정보