CSS Drop Cap on the First Paragraph
Applies a decorative large drop cap to the first letter of the opening paragraph on single posts and pages.
CSSby SnipCraft
css
/* Drop cap: first letter of the first paragraph on single posts and pages */
.single .entry-content > p:first-of-type::first-letter,
.page-template-default .entry-content > p:first-of-type::first-letter {
float: left;
font-size: 3.5em;
line-height: 0.8;
margin: 0.04em 0.12em 0 0;
font-weight: 700;
color: inherit;
font-family: Georgia, "Times New Roman", serif;
}
/* Undo if the first paragraph starts with a blockquote sibling or pull-quote */
.single .entry-content > blockquote:first-child + p::first-letter {
float: none;
font-size: inherit;
line-height: inherit;
margin: 0;
font-weight: inherit;
font-family: inherit;
}#content#css#drop-cap#styling#typography