servo/tests/ref/vertical_align_bottom_a.html

27 lines
686 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;
color: yellow;
}
div {
position: absolute;
top: 100px;
background-color: red;
}
.align {
color: green;
font-size: 20px;
vertical-align: bottom;
}
</style>
</head>
<body>
<div><span class="align">X</span><span>X</span></div>
</body>
</html>