direction 属性规定文本的方向 / 书写方向。
注意:该属性指定了块的基本书写方向,以及针对 Unicode 双向算法的嵌入和覆盖方向。
direction:ltr|rtl|inherit;
值 | 描述 |
ltr | 默认。文本方向从左到右。 |
rtl | 文本方向从右到左。 |
inherit | 规定应该从父元素继承 direction 属性的值。 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
.one
{
direction: rtl
}
.two
{
direction: ltr
}
</style>
</head>
<body>
<div class="one">FishC.com Right-to-left direction.</div>
<div class="two">FishC.com Left-to-right direction.</div>
</body>
</html>
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
1.0 | 1.0 | 1.0 | 8.0 |