blob: 9d470b13a2f528aff81dc3de83da954f662f7bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head>
<style>
div::first-line { color: red; background-color: blue; font-size: 200%; text-transform: uppercase; }
</style>
</head>
<body>
<div>
<span>Line number one.<br/>Line number two.<br/>Line number three.</span>
</div>
</body>
</html>
|