inset-block-end

Baseline 廣泛可用 *

此特性已得到良好支援,可在多種裝置和瀏覽器版本上使用。自 2021 年 4 月起,所有瀏覽器均已支援此特性。

* 此特性的某些部分可能存在不同級別的支援。

inset-block-end CSS 屬性定義了元素的邏輯塊結束偏移量,它根據元素的書寫模式、方向性和文字方向對映到物理內邊距。它對應於 toprightbottomleft 屬性,具體取決於為 writing-modedirectiontext-orientation 定義的值。

插入屬性 對非定位元素沒有影響。

試一試

writing-mode: horizontal-tb;
writing-mode: vertical-rl;
writing-mode: horizontal-tb;
direction: rtl;
writing-mode: vertical-lr;
<section id="default-example">
  <div class="example-container" id="example-element">
    <div id="abspos">I am absolutely positioned with inset-block-end: 20px</div>
    <p>
      As much mud in the streets as if the waters had but newly retired from the
      face of the earth, and it would not be wonderful to meet a Megalosaurus,
      forty feet long or so, waddling like an elephantine lizard up Holborn
      Hill.
    </p>
  </div>
</section>
#example-element {
  border: 0.75em solid;
  padding: 0.75em;
  position: relative;
  width: 100%;
  min-height: 200px;
  unicode-bidi: bidi-override;
}

#abspos {
  background-color: yellow;
  color: black;
  border: 3px solid red;
  position: absolute;
  inset-block-end: 20px;
  inline-size: 140px;
  min-block-size: 200px;
}

語法

css
/* <length> values */
inset-block-end: 3px;
inset-block-end: 2.4em;
inset-block-end: calc(anchor(start) + 20px);
inset-block-end: anchor-size(--my-anchor width, 10%);

/* <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 屬性相同的值。

正式定義

初始值auto
應用於定位元素
繼承性
百分比包含塊的邏輯高度
計算值與盒偏移量相同:toprightbottomleft 屬性,只是方向是邏輯的
動畫型別一個長度百分比或 calc();

正式語法

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 級
# propdef-inset-block-end
CSS 定位佈局模組第 3 級
# propdef-inset-block-end

瀏覽器相容性

另見