inset-block

inset-block CSS 属性定义元素的逻辑块起始和结束偏移量,根据元素的书写模式、方向性和文本方向映射到物理偏移量。它对应于 topbottom,或 rightleft 属性,具体取决于为 writing-modedirectiontext-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();

正式语法

inset-block = 
<'top'>{1,2}

<top> =
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-lr;
  position: relative;
  inset-block: 20px 50px;
  background-color: #c8c800;
}

结果

规范

规范
CSS 逻辑属性和值级别 1
# propdef-inset-block

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅