I have non-sass:
.rounded-corners {
-moz-border-radius-topleft: 4px;
and want to do something like:
$radius_size: 4;
.rounded-corners {
-moz-border-radius-topleft: #{$radius_size}px;
or
.rounded-corners {
-moz-border-radius-topleft: $radius_sizepx;
but these won't work. What is the syntax for this call?
thx