mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
30 lines
553 B
HTML
30 lines
553 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Simple first-line test</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<style type="text/css">
|
|
html { overflow: hidden; }
|
|
body {
|
|
margin: 20px;
|
|
font-family: serif;
|
|
font-size: 200%;
|
|
line-height: 1.5;
|
|
width: 400px;
|
|
}
|
|
|
|
div:first-line {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.floatright {
|
|
float: right;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<body><div>sans-serif<br>serif <strong>bold serif <em>italic</em></strong><em><br>just italic<span class="floatright">italic too</span></em></div></body>
|
|
</html>
|