blob: 5a2174ea2b0a3e2d315266da443d8ee093a69a57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
p:first-letter {
float: left;
color: red;
}
</style>
<title>a first-letter testcase</title>
</head>
<body>
<p>Lorem ipsum dolor sit amet.</p>
</body>
</html>
|