blob: 8c10a8037064a09d8a0c04357315ad8498e3a31d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<title>Reference for trimming block-boxes at their first/last formatted lines</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-parent {
outline: 1px solid orange;
font-family: Ahem;
font-size: 20px;
line-height: 1;
writing-mode:vertical-lr;
}
</style>
<div class ="div-parent">
Test<br><br>
</div>
|