Bug 415506 Comment 29 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

FWIW, articles on https://www.christianitytoday.com/ are affected by this, with their drop-caps first-letter, which is styled like so (ending with `::first-letter` and with `float: left` as one of the declarations, hence I'm assuming it's this same bug):
```css
.single-post .entry-content > p.is-style-article-intro + p:not(.is-style-page-intro):not(.is-style-article-intro):not(.is-style-article-bio):not(.has-drop-cap)::first-letter, .single-post .entry-content > p.is-style-page-intro + p:not(.is-style-page-intro):not(.is-style-article-intro):not(.has-drop-cap)::first-letter, .single-post .entry-content > p:not(.is-style-page-intro):not(.is-style-article-intro):not(.has-drop-cap):not(.is-style-article-copyright):first-of-type::first-letter {
	float: left;
	font-family: freightdispcmp-pro,serif;
	font-size: 70px;
	font-weight: 300;
	line-height: 62px;
	padding-right: .5rem;
	text-transform: uppercase;
}
```

Examples:
https://www.christianitytoday.com/2024/11/artificial-intelligence-college-admissions-essay/
https://www.christianitytoday.com/2024/11/dyslexia-bible-accessibility-lifeway-crossway-grace-typeface/

Back to Bug 415506 Comment 29