본문 바로가기

프론트엔드 공부/scss

scss 변수 유효범위

/*변수의 유효범위*/
$_size: 100px;//전역변수
.container{
    $size:200px;
    position:fixed;
    top:$size;
    .item{
        width:$size;
        height:$size;
    }
}
.box{
    $_size:300px;//let과 개념이 비슷하여 값이 변경됌
    //transform:$size; 
    /*에러 : 중괄호안에서만 유효하며, 전역변수일경우 모두 사요가능*/
    width:$_size;
}
.box2{
    height:$_size;
}