mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
23 lines
494 B
HTML
23 lines
494 B
HTML
<!DOCTYPE html>
|
|
<title>Reference for trimming multi-line text in inline boxes</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#leading-trim">
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
|
|
<style>
|
|
div {
|
|
border: 1px solid orange;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
|
|
span {
|
|
border: 1px solid blue;
|
|
font-family: Ahem;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<span>Testline1<br><br><br>TestLine2<br><br><br>TestLine3</span>
|
|
</div>
|