Re: [csswg-drafts] [css-inline] spec should define behavior when 'initial-letter' and 'float' both set on same element/pseudo-element

I agree with your conclusion that it is what happens given the current spec, but it seems to me that the opposite behavior might be helpful to let authors provide simple fallbacks without having to use `@supports`. Example:
```css
p::first-letter {
  initial-letter: 3;
  float: left;
  line-height: 1;
  font-size: 3em;
}
```
Having this do a float-based drop cap in legacy browsers, and an initial-letter based drop cap in newer ones would sound great.

Also, it is what happens in Safari.

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

Received on Friday, 25 May 2018 03:58:20 UTC