blob: 536728eec875ecf4c651c6b79dd505be03555d1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<head>
<style type="text/css">
body { background: lightblue }
p:first-line { font-family: monospace }
p:first-letter { font-family: sans-serif }
</style>
</head>
<body>
<p style="width: 100px"><span>The first letter of this paragraph should be
in sans-serif while the first-line should be in monospace.</span></p>
</body>
</html>
|