servo/tests/ref/vertical_align_text_bottom_a.html

25 lines
619 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/ahem.css">
<style type="text/css">
body {
margin: 0;
font-size: 100px;
line-height: 1;
}
div {
color: blue;
margin-top: 100px;
}
.align {
font-size: 20px;
color: red;
vertical-align: text-bottom;
}
</style>
</head>
<body>
<div><span>X</span><span class="align">X</span></div>
</body>
</html>