inset-inline-end
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.
CSS 属性 inset-inline-end
定义了元素的逻辑行末偏移,并根据元素的书写模式、行内方向和文本朝向对应至实体偏移。根据 writing-mode
、direction
和 text-orientation
所定义的值,此属性对应于 top
、right
、bottom
或 left
属性。
尝试一下
语法
css
/* 长度值 */
inset-inline-end: 3px;
inset-inline-end: 2.4em;
/* 包含块的宽度或高度的百分比 */
inset-inline-end: 10%;
/* 关键词值 */
inset-inline-end: auto;
/* 全局值 */
inset-inline-end: inherit;
inset-inline-end: initial;
inset-inline-end: revert;
inset-inline-end: revert-layer;
inset-inline-end: unset;
inset-inline-start
和 inset-inline-end
的简写属性为 inset-inline
。
取值
inset-inline-end
属性的取值与 left
属性相同。
形式定义
形式语法
inset-inline-end =
auto |
<length-percentage>
<length-percentage> =
<length> |
<percentage>
示例
设置行末偏移
HTML
html
<div>
<p class="exampleText">示例文本</p>
</div>
CSS
css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-rl;
position: relative;
inset-inline-end: 20px;
background-color: #c8c800;
}
结果
规范
Specification |
---|
CSS Logical Properties and Values Level 1 # position-properties |
浏览器兼容性
BCD tables only load in the browser
参见
- 定义其他偏移的属性:
inset-block-start
、inset-block-end
和inset-inline-start
- 对应的实体属性:
top
、right
、bottom
和left
writing-mode
、direction
、text-orientation