강의

멘토링

커뮤니티

Inflearn Community Q&A

leh87671680's profile image
leh87671680

asked

Sass (SCSS), giving wings to CSS

Wrap up - Boxes Project - 1

& 관련 질문이 있습니다.

Written on

·

204

0

아래와 같이 쓰게 되면

.box .box-inner . box-title 로

css 파일에서 보여지는데...

.box {
     .box-inner {
          .box-inner-title {
          }
      }
}

&를 쓰게 되면  css 파일에서 

클래스 안에 속한 것이 아니라 단독으로

.box-inner-title 로 보여집니다.

&를 쓸 때에도

.box .box-inner .box-inner-title 로 보여지게 할 순 없나요?

.box {
     &-inner {
          &-title {
          }
     }
}

sassHTML/CSS

Answer

This question is waiting for answers
Be the first to answer!
leh87671680's profile image
leh87671680

asked

Ask a question