SCSS & SASS - 함수

일상 코딩·2022년 4월 11일
0

SCSS & SASS

목록 보기
11/16
post-thumbnail

01.SCSS 함수

  • SCSS에서 @mixin을 이용하여 함수와 유사하게 사용하는 방법도 있지만 실제로 @functionSCSS 내에서 JavaScript 함수와 동일한 구조로 활용합니다.
  • @mixinCSSstyle을 다루는 데에 주로 사용이 된다면, @function은 어떠한 값을 명시하는 데에 사용할 수 있습니다.

1.SCSS

@mixin center {
    display: flex;
    justify-content: center;
    align-items: center;
}

@function ratio($size, $ratio) {
    @return $size * $ratio
}

.box {
    $width: 160px;
    width: $width;
    height: ratio($width, 9/16);
    @include center;
}

2.CSS

.box {
  width: 160px;
  height: 90px; // (160px * 9/16)
  display: flex;
  justify-content: center;
  align-items: center;
}
profile
일취월장(日就月將) - 「날마다 달마다 성장하고 발전한다.」

0개의 댓글