案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
div.one
5
{
6
direction: rtl
7
}
8
div.two
9
{
10
direction: ltr
11
}
12
</style>
13
</head>
14
<body>
15
16
<div class="one">Some text. Right-to-left direction.</div>
17
<div class="two">Some text. Left-to-right direction.</div>
18
19
</body>
20
</html>
21