I'm trying to use LESS css to do the following:
width: ((480/1366)*100)+'%';
The problem though is that the output becomes:
width: 35.13909224011713 '%';
How do I make it workable? ie.:
width: 35.13909224011713%;
|
|
It is possible to use string interpolation:
That will output
Additionally, if you want it to be rounded, you can use |
|||||||||||
|
|
Even though this question is quite old, I want to add a few more examples about adding. Less will set your units to whatever is being operated on.
will output 30px
will output 10% So with units you dont need to concatenate the unit measurement. I have found that adding 0 helps when you dont know what the unit value might be.
} The above class will have a width of 20%. If we added with px, it would be 20px. |
|||
|
|