2013-03-03 2 views
1

현재 sass/compass를 사용하여 960gs를 배우는 중이지만 다음 코드에서 "$ n"이 무엇인지와 인수를 사용하는 방법에 대해 혼란 스럽습니다. 이 플러그인에 대한 docs에 따르면960gs Sass arguments

$ninesixty-gutter-width: 20px !default 

$ninesixty-grid-width: 960px !default 

$ninesixty-columns: 12 !default 

$ninesixty-class-separator: "_" !default 

=grid-container 
    margin-left: auto 
    margin-right: auto 
    width: $ninesixty-grid-width 

=grid-width($n, $cols: $ninesixty-columns, $gutter-width: $ninesixty-gutter-width) 
    width: $ninesixty-grid-width/$cols * $n - $gutter-width 

답변

1

은 ...

" Ngrid_N 또는 원래 960 그리드 시스템 프레임 워크와 push_N 같이 스팬 그리드 열 수 있습니다."

+0

나는 그 부분을 알고 있지만 @include하려고하면 $ n이 정의되지 않은 변수라는 오류를 출력합니다. $ n과 관련하여 무엇을 넣어야합니까? – user1762554

+0

추가로 도움을 받으려면 내가 시도한 것을 좀 더 자세하게 살펴볼 필요가 있습니다. $ n은 단순히 1-12의 정수입니다. 오류가 다른 곳에서 트리거 된 값으로 전달되는 경우 – cantera