Having trouble with the .aClass?
.aClass {
width: 20px;
height: 20px;
}
Looking to dynamically calculate a width value in .anotherClass based on the width of .aClass.
.anotherClass {
width: .aClass.width
}
Unfortunately, the code snippet above is not functioning as expected.
I've searched through the LESS documentation but couldn't find a solution. Does anyone know how to achieve this?