HTML _CSS
CSS - SCSS
HiroDaegu
2021. 8. 1. 00:20
728x90
SMALL
작업 환경 구성
(VS code)
- Npm init -y
- Npm i-D parcel-bundler
- Package.json -> script 수정 ("dev" : "parcel index.html", "build": "parcel build index.html")
- SCSS 연결 npm i -d sass
SCSS => CSS 변환 확인 사이트
SassMeister | The Sass Playground!
SassMeister: The sassiest way to play with Sass, Compass, & LibSass! Loading...
www.sassmeister.com
SCSS에서 나누기(몫)을 할 때,
- 괄호 사용 ex) margin: (30px / 2) / margin: (10px + 12px) / 2;
- 변수 사용 ex) margin: $size / 2;
단위가 다른 두 값을 계산하는 방법
calc() 함수 이용 ex) width: calc(100% - 200px);
@mixin 변수명 => 사용할 때에는 @include 변수명
@content -> @include left top {bottom: 0; right:0; margin: auto;} 가 들어감
728x90
LIST