<!DOCTYPE html><html><head>
<title>::first-letter after <br></title>
<style type="text/css">
p { color: green; }
p:first-letter { background: red; color: yellow; font-size: 4em; }
p::first-letter { background: red; color: yellow; font-size: 4em; }
</style>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
<meta name="flags" content="">
</head>
<body>
<p><br><br>This line should be green.</p>
</body></html>