less / less.js

Less. The dynamic stylesheet language.
http://lesscss.org
Apache License 2.0
16.99k stars 3.41k forks source link

allow image-size accept Url parameter #3763

Open heroboy opened 1 year ago

heroboy commented 1 year ago

What: image-size, image-width, image-height can accept parameter like url(a.png)

Why: I can write code like

.xxx{
     background: url(a.png);
     width: image-width($background);
}

else I have to write:

@img: 'a.png'
.xxx{
     background: url(@img);
     width: image-width(@img);
}

How:

Checklist: