Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<title>text-box-trim trims the first line to the smaller font-size set by ::first-line, not the block's own font</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<link rel="match" href="text-box-trim-first-line-pseudo-002-ref.html">
<style>
.spacer {
background: lightgray;
block-size: 60px;
}
.target {
font: 40px/2 Ahem;
text-box: trim-start text;
}
.target::first-line {
font-size: 50%;
}
</style>
<div class="spacer"></div>
<div class="target">Line1<br>Line2</div>
<div class="spacer"></div>