So here is the puzzling situation I'm grappling with.
Here's a peek at the HTML snippet:
<p>This paragraph has <br><br> two unusual line breaks <br><br> and it happens TWICE!</p>
The problem arises when trying to style the text This paragraph
OR the content following the first pair of double line breaks.
I've attempted various CSS selectors like br + br
and nth-selectors, but so far, nothing has worked.
The challenge lies in achieving this effect without using JavaScript. Any hints or solutions by CSS ONLY would be greatly appreciated!
Thank you!