mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
32 lines
414 B
HTML
32 lines
414 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;
|
|
padding-top: 5px;
|
|
}
|
|
#floaty {
|
|
float: left;
|
|
height: 20px;
|
|
width: 100px;
|
|
}
|
|
#pre {
|
|
line-height: 32px;
|
|
white-space: pre;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=floaty></div>
|
|
<div id=pre>x
|
|
x</div>
|
|
</body>
|
|
</html>
|
|
|