Re: [csswg-drafts] [css-inline] Add padding for initial-letter (#7739)

Thanks @Loirooriol 

This code did the trick:

```
p {
  line-height: 1.3;
}

p::first-letter {
  -webkit-initial-letter: 2 3;
  initial-letter: 2 3;
  padding: 1.3em; /* 1lh is not supported in Safari at this time */
}
```

@faceless2 block margins seem to be getting collapsed as `::first-letter` is inline. This may be an implementation quirk.

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


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

Received on Wednesday, 14 September 2022 15:07:06 UTC