Re: [csswg-drafts] [css-typed-om] CSS Typed OM is no faster than using strings and style attribute, no incentive to switch to CSS Typed OM (#11567)

Ah, I was hoping Typed OM would help solve the performance pain point.

Deriving a number, before passing it to CSS, is much faster and the experience when organized is not so bad.

```js
const num = 100;
const double = px * 2;
const style1 = num + 'px'
const style2 = double + 'px'
```

<img width="1281" height="742" alt="Image" src="https://github.com/user-attachments/assets/f078da8d-115b-4087-9dab-fb5e51f86605" />



-- 
GitHub Notification of comment by trusktr
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/11567#issuecomment-3795833989 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Sunday, 25 January 2026 02:11:14 UTC