Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-inline/text-box-trim/text-box-trim-first-line-pseudo-005.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>text-box-trim trims the last line when ::first-line is present and the last line follows a wrap</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<link rel="match" href="text-box-trim-first-line-pseudo-005-ref.html">
<style>
.spacer {
background: lightgray;
block-size: 60px;
}
.target {
font: 20px/2 Ahem;
text-box: trim-end text;
width: 80px;
}
.target::first-line {
color: blue;
}
</style>
<div class="spacer"></div>
<div class="target">AAAA BBBB</div>
<div class="spacer"></div>