inset-block
inset-block
CSS 属性定义元素的逻辑块起始和结束偏移量,根据元素的书写模式、方向性和文本方向映射到物理偏移量。它对应于 top
和 bottom
,或 right
和 left
属性,具体取决于为 writing-mode
、direction
和 text-orientation
定义的值。
此 inset 属性 对非定位元素无效。
试一试
组成属性
此属性是以下 CSS 属性的简写
语法
css
/* <length> values */
inset-block: 3px 10px;
inset-block: 2.4em 3em;
inset-block: 10px; /* value applied to start and end */
inset-block: auto anchor(start);
inset-block: calc(anchor(--myAnchor 50%) + 10px) auto;
/* <percentage>s of the width or height of the containing block */
inset-block: 10% 5%;
/* Keyword value */
inset-block: auto;
/* Global values */
inset-block: inherit;
inset-block: initial;
inset-block: revert;
inset-block: revert-layer;
inset-block: unset;
值
inset-block
属性采用与 left
属性相同的属性值。
正式定义
初始值 | 与简写属性的每个属性相同
|
---|---|
应用于 | 定位元素 |
继承 | 否 |
百分比 | 包含块的逻辑高度 |
计算值 | 与简写属性的每个属性相同
|
动画类型 | 一个 长度、百分比 或 calc(); |
正式语法
示例
设置块起始和结束偏移量
HTML
html
<div>
<p class="exampleText">Example text</p>
</div>
CSS
css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-lr;
position: relative;
inset-block: 20px 50px;
background-color: #c8c800;
}
结果
规范
规范 |
---|
CSS 逻辑属性和值级别 1 # propdef-inset-block |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。
另请参阅
- 映射的物理属性:
top
、right
、bottom
和left
- 映射的物理简写:
inset
- 映射的内联简写:
inset-inline
writing-mode
、direction
、text-orientation