- From: 一丝 via GitHub <sysbot+gh@w3.org>
- Date: Wed, 09 Oct 2024 15:31:19 +0000
- To: public-css-archive@w3.org
> For value emoji it is the purpose of the property to upgrade to emoji presentation, and render glyphs as if they were followed by VS16. My point is that this scenario makes no sense for Digits to render as emoji fonts, and I've never seen a web page use it that way. > font-variant-emoji: still has values unicode and normal and I think the value unicode matches what you want here. Still the same problem I mentioned, this requires a change in the HTML structure. Also, the `unicode` keyword changes the font-family. ```html data:text/html;charset=UTF-8,<!doctype html> <style> .test { font-size: 52px; font-family: Arial; } .normal { font-variant-emoji: normal; } .emoji { font-variant-emoji: emoji; } .text { font-variant-emoji: text; } .unicode { font-variant-emoji: unicode; } </style> <div class="test normal">0123456789*</div> <div class="test unicode">0123456789*</div> <div class="test emoji">0123456789*</div> <div class="test text">0123456789*</div> ``` ![image](https://github.com/user-attachments/assets/0496127e-187a-4dc0-aa76-e6fd04a0ae72) -- GitHub Notification of comment by yisibl Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/11014#issuecomment-2402664016 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 9 October 2024 15:31:19 UTC