0

我已经使用 Semantic.gs 和一些带有 LESS 的嵌套列实现了流畅的布局。但现在我们的客户决定他们想要修复布局。

我想我可以简单地注释掉 grid.less 中的 @total-width:100% 行,但是现在其他 LESS 文件在使用 .row() mixin 的行上给出了错误。

有解决方法吗?

这是 grid.less 的相关部分

/////////////////
// Semantic.gs // for LESS: http://lesscss.org/ 
/////////////////  

// Defaults which you can freely override
@column-width: 20;
@gutter-width: 10;
@columns: 47;


// Utility variable - you should never need to modify this
@gridsystem-width: (@column-width*@columns) + (@gutter-width*@columns) * 1px;
// Set @total-width to 100% for a fluid layout
//@total-width: @gridsystem-width;
//@total-width: 100%;
// Uncomment these two lines and the star-hack width/margin lines below to enable sub-pixel fix for IE6 & 7. See http://tylertate.com/blog/2012/01/05/subpixel-rounding.html
 @min-width: 980;
 @correction: 1 / @min-width * 100 * 1.5%;

这是 LESS 文件有问题的部分。LESS 编译器给出错误'Compiler Errors variable @total-width is undefined (Line: 292)',这是带有 .row() 属性的行:

 #v_main_wrapper{
    position:relative;
    float:none;
    .row(47);
    &:after{
  content: "";
  display: table;
  clear: both;
    }

}
4

1 回答 1

0

我认为你会想要这个:

@total-width: @gridsystem-width; //leave this uncommented, to calculate width
//@total-width: 100%;
于 2013-03-07T19:09:32.070 回答