Quote:
Originally Posted by Turtle91
... I use it primarily for the opening line in the first paragraph of a new chapter:
Code:
p.first::first-line {font-variant:small-caps; font-size:1.15em}
...
|
That looks really nice. I keep seeing publishers doing all kinds of weird capitalizations and spans (like you pointed out later in our post) that I end up having to manually remove. I'm going to look into applying your first-line stuff automatically:
Code:
h2 + p::first-line, ... {
font-variant: small-caps;
font-size: 1.15em;
}
I'll still have to manually remove the source all-caps, but this is a good semi-automatic replacement for what I think the publishers were trying to do.