Group: Administrators
Posts: 13K,
Visits: 104K
|
Yes, order matters. The unit of the first term determines the unit of the result:
1px * 400 -> result will be interpreted as pixels 400 * 1px -> result will be interpreted as pure integer (no unit)
The reason this matters is that there must be a way to deal with terms with different units. E.g, should 1px * 400pct return a result in pixels or percentages? The order of the terms allows you/ the program to decide that.
|