티스토리 뷰
@mixin, @include
가장 많이 사용되는 기능 중 하나로, 선언 시 @mixin
, 적용 시 @include
를 사용합니다.
재사용 함으로써 자원을 줄일 수 있음.$
: 변수, @mixin
: 함수, @include
: 함수 호출 이라고 생각하면 편할 거 같습니다.
scss
$marginBottom: 30px;
$left: left;
$solid: 1px solid;
@mixin mbottom {
margin-bottom: $marginBottom;
}
@mixin test {
width: 100px; height: 100px; border: 1px solid red;
}
@mixin clear {
&:after { content: ""; display: block; clear: both; }
}
.basic { border: $solid blue; @include clear(); @include mbottom();
p { float: $left; @include test(); }
}
@mixin border($color) {
border: $solid $color;
}
// .instance 안에 p 태그의 형제 사이의 순서에 따라 컬러를 줍니다.
.instance { @include border(red); @include mbottom();
p:nth-child(1) { @include border(blue); }
p:nth-child(2) { @include border(pink); }
p:nth-child(3) { @include border(green); }
}
// 여러개의 매개변수를 사용하는 경우
@mixin box($w, $h) { width: $w; height: $h; border: $solid purple }
.box { @include box(300px, 400px); }
css
.basic { border: 1px solid blue; margin-bottom: 30px; }
.basic:after { content: ""; display: block; clear: both; }
.basic p { float: left; width: 100px; height: 100px; border: 1px solid red; }
.instance { border: 1px solid red; margin-bottom: 30px; }
.instance p:nth-child(1) { border: 1px solid blue; }
.instance p:nth-child(2) { border: 1px solid pink; }
.instance p:nth-child(3) { border: 1px solid green; }
.box { width: 300px; height: 400px; border: 1px solid purple; }
'개발.. > Sass(Scss)' 카테고리의 다른 글
@for, @each (0) | 2021.10.17 |
---|---|
Interpolation (0) | 2021.10.17 |
selector (0) | 2021.10.17 |
varaible (0) | 2021.10.17 |
Sass(Scss) (0) | 2021.10.17 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Vite
- Github Actions
- 서버 to 서버
- webpack
- dockerfile
- nextjs13
- openAI
- vue composition api
- nextjs14
- 스벨트
- vue router
- Git
- 깃허브
- Storybook
- nuxt2
- seo
- React
- Embedding
- cors
- 네이버 서치 어드바이저
- AWS
- 타입스크립트
- 티스토리챌린지
- vscode
- NUXT
- NextJS
- docker
- nodejs
- svelte
- 오블완
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함