Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5 span, p:first-letter, div:first-line {
6 font-weight:bold;
7 font-style: italic;
8 font-size: 200%;
9 font-variant: small-caps;
10 font-family: sans-serif;
11 color:red;
12 }
13 span, div:first-line {
14 background: yellow;
15 text-decoration: line-through;
16 }
17 </style>
18 </head>
19 <body>
20 <p><span></span>Hello
21 <div>Hello<br>Kitty</div>
22 </body>
23 </html>