mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
27 lines
686 B
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>
|