Re: [csswg-drafts] [css-inline-3] initial-letters changing used, not computed font-size (#4988)

Doing some testing with this, and it's not that simple.

While changing the _computed font size_ would fix the font-size for any superscript text (for example), it would break [example 6](https://drafts.csswg.org/css-inline-3/#example-43e901df) in particular from the css-inline-spec:

```css
p::first-letter {
  initial-letters: 3;
  color: red;
  width: 5em;
  text-align: right;
  margin-left: -5em;
}

p {
  margin-left: 5em;
}
```
Here, the user wants "-5em" to be computed against the specified font size.

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

Received on Thursday, 23 April 2020 21:08:02 UTC