- CSS 教程
- CSS - 主页
- CSS - 简介
- CSS - 语法
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 边距
- CSS - 列表
- CSS - 填充
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS-Clearfix
- CSS-浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 位置
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 翻译
- CSS - 高度
- CSS - 宽度
- CSS - 不透明度
- CSS - Z 索引
- CSS - 底部
- CSS - 导航栏
- CSS - 叠加
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS-根
- CSS - 盒子模型
- CSS - 计数器
- CSS - 剪辑
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS 高级
- CSS-弹性盒
- CSS - 可见性
- CSS - 定位
- CSS - 层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 媒体类型
- CSS - 分页媒体
- CSS-听觉媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - 重要
- CSS3 教程
- CSS3 - 教程
- CSS3 - 圆角
- CSS3 - 边框图像
- CSS3 - 多背景
- CSS3 - 颜色
- CSS3 - 渐变
- CSS3 - 阴影
- CSS3 - 文本
- CSS3 - 网页字体
- CSS3 - 二维变换
- CSS3 - 3D 变换
- CSS3 - 动画
- CSS3 - 多列
- CSS3 - 用户界面
- CSS3 - 盒子尺寸
- CSS 响应式
- CSS - 响应式网页设计
- CSS 资源
- CSS - 有用的资源
- CSS - 讨论
CSS - Unicode-bidi
CSS unicode-bidi属性用于控制双向文本在文档中的显示方式。双向文本包含从左到右 (LTR) 和从右到左 (RTL) 文本。
unicode -bidi属性允许开发人员覆盖浏览器的默认Behave并确保双向文本正确显示。
可能的值
正常- 这是默认值,它指定文本应根据文本本身的固有方向显示。换句话说,它将使用文本中字符的方向来确定应该如何显示。
embed - 该值用于显式设置元素内文本的方向。将unicode-bidi设置为embed时,还可以使用 Direction 属性来指定文本是应从左到右 ( ltr ) 还是从右到左 ( rtl ) 显示。
bidi-override - 该值创建内联元素的覆盖。对于块元素,它会覆盖浏览器的双向文本算法,并严格根据 Direction属性在任何内联子元素内流动文本。
isolate - 该值将元素与其同级元素隔离。
isolate-override - 该值使用isolate关键字对周围内容的隔离Behave以及bidi-override关键字对内部内容的覆盖Behave。
plaintext - 防止双向文本(BIDI)算法影响元素内的文本。
适用于
所有定位元素,但某些值对非内联元素没有影响。
DOM语法
object.style.unicodeBidi = "normal|embed|bidi-override|isolate|isolate-override|plaintext";
CSS 属性unicode-bidi和Direction 是唯一不受all速记属性影响的属性。
此属性仅供文档类型定义 (DTD) 设计者使用。通常不建议网页设计师或类似作者覆盖它。
CSS Unicode Bidi - 正常值
以下示例演示了如何使用unicode-bidi: normal,文本按从右到左方向 (RTL) 的默认顺序排列 -
<html> <head> <style> .box { direction: rtl; unicode-bidi: normal; color:red; } </style> </head> <body> <h2>CSS unicode-bidi - normal Value</h2> <p>The following text is displayed in its default order from right-to-left direction.</p> <div class="box"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div> </body> </html>
CSS Unicode Bidi - 嵌入值
以下示例演示了如何使用unicode-bidi: embed。该值将文本的方向嵌入其周围的内容中,当方向设置为rtl时,文本以从右到左(RTL)方向显示 -
<html> <head> <style> .box { direction: rtl; unicode-bidi: embed; color:red; } </style> </head> <body> <h2>CSS unicode-bidi - embed Value</h2> <p>The following text is displayed in its default order from right-to-left direction.</p> <div class="box"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div> </body> </html>
CSS Unicode Bidi - bidi 覆盖值
以下示例演示了如何使用unicode-bidi: bidi-override。该值以相反的顺序显示文本,最右边的字符显示在第一个位置。 -
<html> <head> <style> .box { direction: rtl; unicode-bidi: bidi-override; color:red; } </style> </head> <body> <h2>CSS unicode-bidi - bidi-override Value</h2> <p>The following text is displayed in reverse order of the characters in right-to-left direction.</p> <div class="box"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div> </body> </html>
CSS Unicode Bidi - 隔离值
以下示例演示了如何使用unicode-bidi:isolate。该值用于将双向文本与其周围文本隔离。-
<html> <head> <style> .box { direction: rtl; unicode-bidi: isolate; color:red; } </style> </head> <body> <h2>CSS unicode-bidi - isolate Value</h2> <p>The following text is displayed in its default order from right to left.</p> <div class="box"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div> </body> </html>
CSS Unicode Bidi - 隔离覆盖值
以下示例演示了如何使用unicode-bidi:isolate-override。该值用于将双向文本与其周围文本隔离并覆盖 -
<html> <head> <style> .box { direction: rtl; unicode-bidi: isolate-override; color:red; } </style> </head> <body> <h2>CSS unicode-bidi - isolate-override Value</h2> <p>The following text is displayed in reverse order of the characters in right-to-left direction.</p> <div class="box"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div> </body> </html>
CSS Unicode Bidi - 纯文本值
以下示例演示了如何使用unicode-bidi: plaintext。该值将文本视为纯文本,而不应用任何双向文本算法。-
<html> <head> <style> .box { direction: rtl; unicode-bidi: plaintext; color:red; } </style> </head> <body> <h2>CSS unicode-bidi - plaintext Value</h2> <p>The following text is displayed in its default order from left-to-right direction.</p> <div class="box"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div> </body> </html>
CSS unicode-bidi - 相关属性
以下是与unicode-bidi相关的 CSS 属性列表:
财产 | 价值 |
---|---|
方向 | 设置块级元素中文本的方向。 |