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-initial-letter-end-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>text-box-trim: trim-end works even in the presence of initial-letter</title>
<link rel="match" href="text-box-trim-initial-letter-end-001-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
.spacer {
height: 50px;
background: lightgray;
position: relative;
}
.target {
font: 40px/1 Ahem;
text-box-trim: trim-end;
text-box-edge: text alphabetic;
}
.target::first-letter {
initial-letter: 3;
}
</style>
<div class="spacer"></div>
<div class="target">ApÉx</div>
<div class="spacer"></div>