代码改变世界

HTML bdo 标签 用来 左右颠倒

2022-02-23 21:46  jetwill  阅读(69)  评论(0编辑  收藏  举报

HTML bdo tag

HTML tag stands for "BiDirectional Override" which is used to overrides the current/default text direction. This tag sets the direction of content within it to render on browser from left to right or right to left.

The tag is useful for the languages which are written from right to left such as Arabic and Hebrew.

https://www.w3schools.com/tags/tag_bdo.asp

<!DOCTYPE html>
<html>
<body>

<h1>The bdo element</h1>

<p>This paragraph will go left-to-right.</p>  
<p><bdo dir="rtl">This paragraph will go right-to-left.</bdo></p>  

</body>
</html>

结果是:

The bdo element
This paragraph will go left-to-right.

This paragraph will go right-to-left.