r=bzbarsky, r+a=roc git-svn-id: svn://10.0.0.236/trunk@237923 18797224-902f-48f8-a5cc-f745e15eee43
17 lines
346 B
HTML
17 lines
346 B
HTML
<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>
|