How to say in less that the background is red when the height is less than 100px, otherwise it is blue

problem description

the environmental background of the problems and what methods you have tried

related codes

/ / Please paste the code text below (do not replace the code with pictures)

what result do you expect? What is the error message actually seen?

topic description

sources of topics and their own ideas

related codes

/ / Please paste the code text below (do not replace the code with pictures)

what result do you expect? What is the error message actually seen?

Sep.24,2021

landlord, you can try this

.setColor(@height) {
  & when (@height > 100) {
        background-color: blue;
    }
    
  & when (@height < 100) {
        background-color: red;
   } 
}
< hr >

if it is helpful, please click to adopt it, thank you ~

Menu