我有一个div.article,它在 8 列布局上是 2 列宽。
在将布局增加到 12 列的断点处,我希望我的div.article仍然有 2 列宽。
请注意,由于流体容器,列宽不是固定的。
问题是当我的布局(和我的列宽)发生变化时div.article保持其原始宽度。它的宽度保持为 2“旧”列宽。
为了解决这个问题,我必须有这样的标记:
.article {
@include span-columns(2); // original size
@include at-breakpoint($mobile_portrait) {
@include span-columns(2); // I must add this so its new width is large as 2 columns of the new layout
}
}
有什么方法可以防止在流体网格上重复这样的标记?