.element {
will-change: transform;
}
and
.element {
will-change: transform, opacity;
}
we will not a css for change?
]]>will-change
property is applied to an element on Chrome it gets a bit blurry?
]]>Yep! Comma-separating values is totally legit. The spec has some excellent tips on using the property, one of which is to be mindful of using it across too many properties and elements.
]]>will-change: opacity, contents
? Would this work?
]]>It is still a thing, I’ve used it a couple times to deal with fixed position backgrounds causing the page to appear laggy, but it’s a very niche thing that is rarely needed, it only helps performance if there is already a Major issue
]]>