inset-block-end
inset-block-end
CSS 属性定义元素的逻辑块结束偏移量,它映射到一个物理内边距,具体取决于元素的书写模式、方向和文本方向。它对应于 top
、right
、bottom
或 left
属性,具体取决于 writing-mode
、direction
和 text-orientation
定义的值。
此 内边距属性 对非定位元素无效。
试一试
语法
css
/* <length> values */
inset-block-end: 3px;
inset-block-end: 2.4em;
inset-block-end: calc(anchor(start) + 20px);
inset-block-end: anchor(--myAnchor 50%);
/* <percentage>s of the width or height of the containing block */
inset-block-end: 10%;
/* Keyword value */
inset-block-end: auto;
/* Global values */
inset-block-end: inherit;
inset-block-end: initial;
inset-block-end: revert;
inset-block-end: revert-layer;
inset-block-end: unset;
值
inset-block-end
属性采用与 left
属性相同的值。
正式定义
正式语法
inset-block-end =
auto |
<length-percentage>
<length-percentage> =
<length> |
<percentage>
示例
设置块结束偏移量
HTML
html
<div>
<p class="exampleText">Example text</p>
</div>
CSS
css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-rl;
position: relative;
inset-block-end: 20px;
background-color: #c8c800;
}
结果
规范
规范 |
---|
CSS 逻辑属性和值级别 1 # position-properties |
浏览器兼容性
BCD 表格仅在浏览器中加载
另请参阅
- 定义其他内边距的属性:
inset-block-start
、inset-inline-start
和inset-inline-end
- 映射的物理属性:
top
、right
、bottom
和left
writing-mode
、direction
、text-orientation