blob: 4ccc50a20b8b27aa4d8af9032b45696e05bc6c2e [file] [log] [blame] [edit]
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
<link rel="match" href="references/first-line-with-out-of-flow.html">
<title>First Line with out of flow with out of flow elements nested in span.</title>
<style>
#block::first-line { color: green; }
</style>
<div id="block">
<div style="position: absolute"><br></div>
<div style="float: right"><br></div>
<div>
<div style="position: absolute"><br></div>
<div style="float: right"><br></div>
<div style="color: blue">
<div>
<span><span>This text <span style="position: absolute"></span> <span style="float: right"></span> should be green.</span></span><br>
This text should be blue.
</div>
</div>
</div>
</div>