在 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 获得完整的结果?