SCSS는 웹 개발에서 사용되는 스타일 시트 언어중 하나로, CSS의 확장버전
.background {
width: 100px;
float: left;
li {
color: red;
&:last-child {
background-color:yellow;
}
}
}
.background
width: 100px;
float: left;
li
color: red;
&:last-child
background-color:yellow;