0
저는 부트 스트랩의 초보자이며이 개념을 이해할 수 없습니다. 코드의 의미는 무엇입니까?부트 스트랩에서 믹스 인의 역할은 무엇입니까?
// Creates wrapper for a series of columns
.make-row(@gutter: @grid-gutter-width) {
// Then clear the floated columns
.clearfix();
@media (min-width: @screen-sm-min) {
margin-left: (@gutter/-2);
margin-right: (@gutter/-2);
}
// Negative margin nested rows out to align the content of columns
.row {
margin-left: (@gutter/-2);
margin-right: (@gutter/-2);
}
}
설명해주세요. –