CSS 属性 inset-block-end 确定元素的逻辑块结束偏移量。这取决于元素的 writing-mode、direction和text-orientation 它与物理偏移的 top和bottom,或left 和 right CSS 属性相关。
属性值
CSS 属性 inset-block-end 与 left CSS 属性采用相同的值集,如下所示:
<length>: 可以指定负值、空值或正值。
<percentage>: 容器的百分比宽度。
auto: 默认值。浏览器计算左侧位置。
inherit: 指定与从其父元素计算得出的值相同的值。
适用范围
所有定位元素。
语法
inset-block-end = auto | <length-percentage>
/* <length> */
inset-block-end: 5px;
inset-block-end: 3.4em;
/* <percentage> */
inset-block-end: 15%;
/* 关键字 */
inset-block-end: auto;
CSS inset-block-end: 设置偏移量
下面的示例演示了使用inset-block-end 属性,传递给它的长度值,用于确定结束偏移值。
<html>
<head>
<style>
div {
background-color: coral;
width: 180px;
height: 120px;
position: relative;
}
.inset-ex {
writing-mode: horizontal-tb;
position: absolute;
inset-block-end: 50px;
background-color: cornsilk;
}
</style>
</head>
<body>
<div>
<span class="inset-ex">inset-block-end</span>
</div>
</body>
</html>
CSS inset-block-end: 百分比值
以下示例演示了使用 inset-block-end 属性并传递给它的百分比值,该值确定结束偏移值。写入模式设置为horizontal-tb。
<html>
<head>
<style>
div {
background-color: coral;
width: 180px;
height: 120px;
position: relative;
}
.inset-ex {
writing-mode: horizontal-tb;
position: absolute;
inset-block-end: 50%;
background-color: cornsilk;
}
</style>
</head>
<body>
<div>
<span class="inset-ex">inset-block-end</span>
</div>
</body>
</html>
CSS inset-block-end: 带方向
下面的示例演示了inset-block-end属性与写入的使用-模式为vertical-lr,文本方向为rtl。
<html>
<head>
<style>
div {
background-color: coral;
width: 180px;
height: 120px;
position: relative;
}
.inset-ex {
writing-mode: vertical-lr;
direction: rtl;
position: absolute;
inset-block-end: 150px;
background-color: cornsilk;
}
</style>
</head>
<body>
<div>
<span class="inset-ex">inset-block-end</span>
</div>
</body>
</html>
CSS inset-block-end: auto
以下示例演示了 inset-block-end 属性与auto 作为传递给它的值,它确定结束偏移值。写入模式也设置为horizontal-tb。
<html>
<head>
<style>
div {
background-color: coral;
width: 180px;
height: 120px;
position: relative;
}
.inset-ex {
writing-mode: horizontal-tb;
position: absolute;
inset-block-end: auto;
background-color: cornsilk;
}
</style>
</head>
<body>
<div>
<span class="inset-ex">inset-block-end</span>
</div>
</body>
</html>