In sass I am doing this:
#myid
width: (500 / 960) /*also need to convert it to %
(* 100%) but that works fine*/
}
And the result that I am getting is:
#myid{
width: 0.521;
}
Now on the 'responsive web design' book it states that we should not shorten the result. So what I needed is
#myid{
width: 0.52083333333333;
}
So is there a way to get the full result in this case, with sass?