mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
28 lines
603 B
HTML
28 lines
603 B
HTML
<!DOCTYPE html>
|
|
<title>CSS Rhythmic Sizing: line-height-step basic layout reference</title>
|
|
<link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
|
|
<style>
|
|
div {
|
|
font-family: Ahem;
|
|
font-size: 40px;
|
|
}
|
|
.test, .ref {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: 5em;
|
|
}
|
|
.ref {
|
|
line-height: 60px;
|
|
}
|
|
</style>
|
|
<p class="instructions">Test passes if left and right are the same.
|
|
<div class="ref">
|
|
<div>XXXXX</div>
|
|
<div>XXXXX XXXXX XXXXX</div>
|
|
<div><br>X<br>X</div>
|
|
</div>
|
|
<div class="ref">
|
|
<div>XXXXX</div>
|
|
<div>XXXXX XXXXX XXXXX</div>
|
|
<div><br>X<br>X</div>
|
|
</div>
|