47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tests initial letter sunk initial in vertical-lr</title>
|
|
<link rel="author" title="Google LLC" href="https://www.google.com/">
|
|
<link rel="help" href="https://drafts.csswg.org/css-inline/#sunk-initial">
|
|
<meta name="flags" content="ahem">
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" >
|
|
<style>
|
|
.sample {
|
|
border: solid 1px green;
|
|
font-family: Ahem;
|
|
font-size: 20px;
|
|
height: 230px;
|
|
line-height: 24px;
|
|
writing-mode: vertical-rl;
|
|
}
|
|
|
|
.fake-initial-letter {
|
|
background: lime;
|
|
display: inline-block;
|
|
height: 80px;
|
|
margin-left: 8px;
|
|
margin-right: -4px;
|
|
width: 80px;
|
|
}
|
|
|
|
.remainder {
|
|
display: inline-block;
|
|
margin-right: 24px;
|
|
margin-top: -20px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.remainder2 {
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="sample">
|
|
<div class="fake-initial-letter"></div>
|
|
<div class="remainder">bc<br>def<br>ghi</div><br>
|
|
<div class="remainder2">jkl<br>mno<br></div>
|
|
</div>
|
|
</body>
|
|
</html>
|