How can I bold the first word of sentence using CSS selectors and is this a good/bad way to do this with respects to browser comparability?
code:
&
The current CSS selectors do now allow this.
So I change my approach to bold the first line.
HTML
this is a sentence
CSS
h2::first-line{ font-weight: bold; }