Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/first-line-with-inline-block.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="reference/first-line-with-inline-block-ref.html">
<style>
.fl:first-line {
color: red;
}
.fl-atomic {
display: inline-block;
}
.fl-atomic:first-line {
color: lime;
}
</style>
<div class="fl">
FIRST <div class="fl-atomic">first</span><br>second</div> FIRST
</div>