blob: 26959bad235a6ca1aadef0e7bf553d5edde15ebf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<style>
body { background: lightblue;}
.first:first-letter { color: red; }
.right { direction: rtl; }
</style>
</head>
<body>
<div class="first"><span>abc</span></div>
<div class="first"><span class="right">def</span></div>
<div class="first right"><span>geh</span></div>
</body>
</html>
|