2

我使用奇点设置了 12 列网格。很多时候我都在寻找一个简单的列宽变量。我可以使用 grid-span(),但它涉及边距和浮动。是否有任何混合/函数仅返回 % 的列宽?我正在寻找这个两天没有任何成功。我发现只有 span-columns(x, y); 但它不起作用。

感谢您指出一个方向。

编辑:找到解决方案

尝试使用 column-span ( https://github.com/Team-Sass/Singularity/wiki/Grid-Helpers#column-span ) 作为与@include. 正确使用例如:

width: column-span(2, 6); //width will be set to 2 columns at six position.
4

1 回答 1

1

找到解决方案

尝试使用 column-span ( https://github.com/Team-Sass/Singularity/wiki/Grid-Helpers#column-span ) 作为 @include 的 mixin 是我的错误。正确使用例如:

width: column-span(2, 6);//宽度将在六个位置设置为 2 列。

于 2013-08-26T20:02:08.897 回答