ultralight-ux / Ultralight

Lightweight, high-performance HTML renderer for game and app developers.
https://ultralig.ht
4.65k stars 196 forks source link

CSS Transform Scale on parent won't scale text #312

Open joepriit opened 3 years ago

joepriit commented 3 years ago

Title says all, example on parent div:

transform: scale(0.5);

image

DrJonki commented 1 year ago

CSS transforms with text seem to be broken in general. This also produces weird artifacts:

<style>
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}
</style>

<span style="animation: spin 2s infinite linear">A</span>