mirror of
https://github.com/servo/servo.git
synced 2025-06-14 03:14:29 +00:00
34 lines
491 B
HTML
34 lines
491 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
font-size: 16px;
|
|
font-family: Ahem, monospace;
|
|
}
|
|
#floaty {
|
|
float: left;
|
|
height: 20px;
|
|
width: 100px;
|
|
}
|
|
#pre {
|
|
white-space: pre;
|
|
}
|
|
.spacer {
|
|
color: transparent;
|
|
font-size: 32px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=floaty></div>
|
|
<div id=pre>x<span class=spacer>x</span>
|
|
x<span class=spacer>x</span></div>
|
|
</body>
|
|
</html>
|
|
|