inset-block-start

inset-block-start CSS 属性定义元素的逻辑块起始偏移量,根据元素的书写模式、方向性和文本方向映射到物理内边距。它对应于 toprightbottomleft 属性,具体取决于为 writing-modedirectiontext-orientation 定义的值。

内边距属性 对非定位元素无效。

试一试

语法

css
/* <length> values */
inset-block-start: 3px;
inset-block-start: 2.4em;
inset-block-start: anchor(end);
inset-block-start: calc(anchor(--myAnchor 50%) + 5px);

/* <percentage>s of the width or height of the containing block */
inset-block-start: 10%;

/* Keyword value */
inset-block-start: auto;

/* Global values */
inset-block-start: inherit;
inset-block-start: initial;
inset-block-start: revert;
inset-block-start: revert-layer;
inset-block-start: unset;

inset-block-start 属性采用与 left 属性相同的值。

正式定义

初始值auto
应用于定位元素
继承
百分比包含块的逻辑高度
计算值与盒子偏移量相同:toprightbottomleft 属性,但方向是逻辑方向
动画类型一个 长度百分比 或 calc();

正式语法

inset-block-start = 
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-start: 20px;
  background-color: #c8c800;
}

结果

规范

规范
CSS 逻辑属性和值级别 1
# position-properties

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅