HTML bdo标记

本文概述

  • 属性
  • 全局属性
  • 事件属性
  • 支持的浏览器
HTML < bdo> 标记代表“双向覆盖”, 用于覆盖当前/默认文本方向。此标记设置内容的方向, 以从左到右或从右到左在浏览器上呈现。
< bdo> 标记对于从右到左书写的语言(例如阿拉伯语和希伯来语)很有用。
句法
< bdo dir=" "> Content......< /bdo>

【HTML bdo标记】以下是有关< bdo> 标签的一些规范
Display Inline
开始日期/结束日期 开始标签和结束标签
Usage textual

< !DOCTYPE html> < html> < head> < title> Bdo tag< /title> < /head> < body> < h2> Example of HTML bdo tag< /h2> < p style="color:#ff4040"> This is Normal Content with default directionality< /p> < p> This is with left to right directionality:< bdo dir="ltr" style="color: #5f9ea0"> A beautiful Flower< /bdo> < /p> < p> This is with right to left directionality:< bdo dir="rtl" style="color:#68228b"> A beautiful Flower< /bdo> < /p> < /body> < /html>

立即测试
输出:
HTML bdo标记

文章图片
属性 特定于标签的属性
属性 描述
dir
ltr 从左到右定义方向性。
rtl 从右到左定义方向性。
全局属性 < bdo> 标记在HTML中支持Global属性。
事件属性 < bdo> 标记支持HTML中的Event属性。
支持的浏览器
Element Chrome IE Firefox Opera Safari
< bdo> Yes Yes Yes Yes Yes

    推荐阅读