inset-inline

inset-inline CSS 属性定义元素在内联方向上的逻辑起始和结束偏移量,该偏移量会根据元素的书写模式、方向性和文本方向映射到物理偏移量。它对应于 topbottom,或 rightleft 属性,具体取决于为 writing-modedirectiontext-orientation 定义的值。

inset 属性 对非定位元素没有影响。

试一试

组成属性

此属性是以下 CSS 属性的简写形式

语法

css
/* <length> values */
inset-inline: 3px 10px;
inset-inline: 2.4em 3em;
inset-inline: 10px; /* value applied to start and end */
inset-inline: auto calc(anchor(self-start) + 20px);
inset-inline: anchor(--myAnchor 50%) auto;

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

/* Keyword value */
inset-inline: auto;

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

Values

inset-inline 属性接受与 left 属性相同的值。

正式定义

Initial value作为简写属性中每个属性的初始值
Applies to定位元素
Inheritedno
Percentages包含块的逻辑宽度
Computed value作为简写属性中每个属性的初始值
Animation type一个 长度百分比 或 calc();

正式语法

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

<top> =
auto |
<length-percentage>

<length-percentage> =
<length> |
<percentage>

示例

Setting inline start and end offsets

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-inline: 20px 50px;
  background-color: #c8c800;
}

Result

规范

Specification
CSS Logical Properties and Values Level 1
# propdef-inset-inline

浏览器兼容性

BCD tables only load in the browser

另请参阅