-
[SASS] for문 활용HTML & CSS 2018. 11. 21. 15:59
li {
float: left;
width: calc((100% - 6.6rem) / 4);
margin-right: 2.2rem;
height: 27rem;
@for $i from 1 through 4 {
&:nth-of-type(#{$i}) {
background: {
image: url("../../assets/images/cp_label_#{$i}.png");
position: calc(100% - 1rem) 11.5rem;
repeat: no-repeat;
size: auto;
};
.bg-area {
border-top-left-radius: .6rem;
border-top-right-radius: .6rem;
background: {
image: url("../../assets/images/cp_#{$i}.png");
position: center bottom;
repeat: no-repeat;
size: cover;
};
}
}
}
}'HTML & CSS' 카테고리의 다른 글
[CSS] input placeholder color (0) 2018.11.21 [CSS] 레이어 중앙 정렬 (ie7 ~) (0) 2018.11.21 [CSS] counter 사용 (0) 2018.11.21 [CSS] 요소 개수별로 속성 적용 (0) 2018.11.21 [SASS] 자주 쓰는 @mixin 믹스인 (0) 2018.11.21 댓글