SASS 소개
사스는 무엇입니까?
변수:
-예:
.sass
$primaryColorBtn: green;
.card {
color: $primaryColorBtn;
}
.css
.card {
color: green
}
지도:
$font-sizes: (
"regular": 0.875rem,
"medium": 1rem,
"large": 1.2rem
)
.card {
font-size: map-get($font-sizes, large);
}
이 스니펫에서는 먼저 font-sizes 맵에서 "large"키를 찾아 값을 가져옵니다.
둥지 키워드:
.form-horizontal {
display: flex;
.btn {
color: $primaryBtnColor;
}
}
결과는 ".form-horizontal .btn {color: green }"입니다.
부분 파일:
및 믹스인:
@mixin important-text {
color: red;
font-size: 25px;
font-weight: bold;
}
.warning {
@include important-text;
color: yellow;
}
include는 다른 클래스의 믹스인에 액세스하는 데 사용됩니다.
매개변수와 혼합:
@mixin important-text($color) {
color: $color;
font-size: 25px;
font-weight: bold;
}
.warning {
@include important-text(yellow);
}
@확장:
.text-basic {
border: none;
text-align: center;
font-size: 16px;
cursor: pointer;
}
.text-warning {
@extend .text-basic;
color: yellow;
}
.text-error {
@extend .text-basic;
color: red;
}
.text-success {
@extend .text-basic;
color: green;
}
수학 계산:
같은,
80% - 20% valid
100vh - 78vh valid
30% + 10vh not-valid
수입:
Reference
이 문제에 관하여(SASS 소개), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/surajmore98/intro-to-sass-3kcl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)