Re: [csswg-drafts] [css-pseudo] Multi-line ::first-letter (#2254)

Yes, I mean, the new text is good, it covers this case:

```html
<style>
p { width: 0; word-wrap: break-word; }
p::first-letter { background: lime; }
</style>
<p>‘T</p>
```

But it's not enough, because it doesn't cover

```html
<style>
p::first-letter { background: lime; }
</style>
<p>‘</p>
```

We basically resolved to align with Firefox, where the punctuation is lime.

Seems a bit strange if `‘` is affected by ::first-letter when followed by a letter in another line (so not affected by ::first-letter), but a `‘` alone isn't affected by ::first-letter.

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


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

Received on Friday, 31 December 2021 11:19:01 UTC