mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
25 lines
612 B
HTML
25 lines
612 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 {
|
|
color: red;
|
|
font-size: 0.8em;
|
|
vertical-align: sub;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span>X</span><span class="align">X</span></div>
|
|
</body>
|
|
</html>
|