mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
29 lines
No EOL
635 B
HTML
29 lines
No EOL
635 B
HTML
<!DOCTYPE html>
|
|
<title>CSS Rhythmic Sizing: line-height-step with ruby in vertical-rl</title>
|
|
<link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
|
|
<style>
|
|
.container {
|
|
font-family: Ahem;
|
|
font-size: 40px;
|
|
writing-mode: vertical-rl;
|
|
width: 5em;
|
|
}
|
|
.test, .ref {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
.ref {
|
|
line-height: 120px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p class="instructions">Test passes if top and bottom are the same.
|
|
<div class="container">
|
|
<div class="ref">
|
|
<div>X<ruby>XX<rt>XX</rt></ruby>X</div>
|
|
</div>
|
|
<div class="ref">
|
|
<div>X<ruby>XX<rt>XX</rt></ruby>X</div>
|
|
</div>
|
|
</div>
|
|
</body> |