Web速查-索引

定义

bdo 标签修改默认的文本方向。

属性

属性 描述
dir ltr、rtl 定义文字的方向(ltr -> left to right;rtl -> right to left)

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
</head>
<body>
<p>正常:Welcome to FishC.com</p>
<p>
如果鱼油的浏览器支持 bi-directional override (bdo),下一行会从右向左输出 (rtl);
</p>
<bdo dir="rtl">
Welcome to FishC.com
</bdo>
</body>
</html>

Alt text

视频讲解