grid-auto()
grid-auto-* 속성 믹스인
Last updated
grid-auto-* 속성 믹스인
Last updated
.usage {
grid-auto-flow: row dense;
grid-auto-rows: min-content;
grid-auto-columns: max-content;
}@mixin grid-auto($args: null) {
@if $args != null and is-include-items($args, flow f rows r cols c) {
$flow-value: get-match-value-of-keys($args, flow f);
@if $flow-value {
@include auto-flow($flow-value);
}
$rows-value: get-match-value-of-keys($args, rows r);
@if $rows-value {
@include auto-rows($rows-value);
}
$cols-value: get-match-value-of-keys($args, cols c);
@if $cols-value {
@include auto-cols($cols-value);
}
}
}