inset-inline-end
Baseline 廣泛可用 *
inset-inline-end CSS 屬性定義了元素的邏輯行內結束端內邊距,它對映到一個物理偏移量,具體取決於元素的書寫模式、方向性和文字方向。它對應於 top、right、bottom 或 left 屬性,具體取決於為 writing-mode、direction 和 text-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-inline-end: 50px
</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-inline-end: 50px;
inline-size: 140px;
min-block-size: 80px;
}
語法
css
/* <length> values */
inset-inline-end: 3px;
inset-inline-end: 2.4em;
inset-inline-end: calc(anchor(self-start) + 5px);
inset-inline-end: anchor-size(height);
/* <percentage>s of the width or height of the containing block */
inset-inline-end: 10%;
/* Keyword value */
inset-inline-end: auto;
/* Global values */
inset-inline-end: inherit;
inset-inline-end: initial;
inset-inline-end: revert;
inset-inline-end: revert-layer;
inset-inline-end: unset;
inset-inline-start 和 inset-inline-end 的簡寫是 inset-inline。
值
inset-inline-end 屬性接受與 left 屬性相同的值。
正式定義
正式語法
inset-inline-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-inline-end: 20px;
background-color: #c8c800;
}
結果
規範
| 規範 |
|---|
| CSS 邏輯屬性和值第 1 級 # propdef-inset-inline-end |
| CSS 定位佈局模組第 3 級 # propdef-inset-inline-end |
瀏覽器相容性
載入中…
另見
- 定義其他內邊距的屬性:
inset-block-start、inset-block-end和inset-inline-start - 對映的物理屬性:
top、right、bottom和left writing-mode、direction、text-orientation