1

在 sass 中,我正在这样做:

#myid
  width: (500 / 960) /*also need to convert it to % 
                     (* 100%) but that works fine*/
}

我得到的结果是:

#myid{
  width: 0.521;
}

现在在“响应式网页设计”一书中,它指出我们不应该缩短结果。所以我需要的是

  #myid{
      width: 0.52083333333333;
    }

那么在这种情况下,有没有办法用 sass 获得完整的结果?

4

1 回答 1

0

在你的末尾添加这个config.rb

Sass::Script::Number.precision = 13
于 2012-11-12T21:48:41.663 回答