I have this code:
.grid__element--1 {
background-color: orange;
-ms-grid-row: 1 / 3;
grid-row: 1 / 3;
}
Obviously, this will be compiled to CSS as:
.grid__element--1 {
background-color: orange;
-ms-grid-row: 0.33333333; // need to be 1/3
grid-row: 0.33333333; // need to be 1/3
}
Is there any way entering a value in Less for grid-row
to be compiled correctly to 1/3
?