scss 배열
$colors-arr : red, blue, yellow
$colors-arr : (
"main" : red,
"sub" : blue,
"emphasis" : yellow
)
scss if문 축약형
.bg-dark{
color: if($name=="dark",#fff,inherit)
}
부트스트랩처럼 미디어쿼리 작성하기
// 각 미디어쿼리도 each로 쓰고싶었으나 실패함
$breakpoint-sm : "576px";
$breakpoint-md : "768px";
$breakpoint-lg : "992px";
$breakpoint-xl : "1200px";
$breakpoint-xxl : "1540px";
@mixin responsive-sm{
@media (min-width: $breakpoint-sm){
@content;
}
}
@mixin display() {
&-block{display: block !important;}
&-inline{
display: inline !important;
&-block{display: inline-block !important;}
}
&-flex{display: flex !important;}
&-grid{display: grid !important;}
}
.d{
@include display()
}
@include responsive-sm(){
.d-sm{
@include display()
}
}
'css' 카테고리의 다른 글
[scss]each 두번 쓰기 (0) | 2024.08.14 |
---|---|
[scss]vscode live sass compiler 저장 위치 변경 / map 안 만들기 (0) | 2024.08.09 |
[css]animation 깜빡이는 효과 (깜빡임) (0) | 2024.07.22 |
[css]import 시킬 때 참고사항 (css include같이) (0) | 2024.07.09 |
[css]모바일 확대 금지 (아이폰 포함) (0) | 2024.06.12 |