CSS 属性

CSS 属性 inset-inline-end 确定元素的逻辑内联结束插入。这取决于元素的 writing-modedirectiontext-orientation 它与物理偏移的 topbottom,或left 和 right CSS 属性相关。

属性值

CSS 属性 inset-inline-end 采用与 left CSS 属性相同的值集,如下所示:

  • <length>: 可以指定负值、空值或正值。

  • <percentage>: 容器宽度的百分比。

  • auto: 默认价值。浏览器计算左侧位置。

  • inherit: 指定与从其父元素计算得出的值相同的值。

适用范围

所有定位元素。

语法

inset-inline-end = auto | <length-percentage> 

/* <length> */
inset-inline-end: 5px;
inset-inline-end: 3.4em;
   
/* <percentage>百分比值 */
inset-inline-end: 15%;
   
/* 关键字值 */
inset-inline-end: auto; 

CSS inset-inline-end: 设置偏移量

以下示例演示了使用inset-inline-end 属性,传递给它的长度值,用于确定结束偏移值。

<html>
<head>
<style>
   div {
      background-color: coral;
      width: 180px;
      height: 120px;
      position: relative;
   }

   .inset-ex {
      writing-mode: horizontal-tb;
      position: absolute;
      inset-inline-end: 50px;
      background-color: cornsilk;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-inline-end</span>
   </div>
</body>
</html> 

CSS inset-inline-end: 百分比值

以下示例演示了使用 inset-inline-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-inline-end: 50%;
      background-color: cornsilk;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-inline-end</span>
   </div>
</body>
</html> 

CSS inset-inline-end: 带方向

下面的示例演示了inset-inline-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-inline-end: 20px;
      background-color: cornsilk;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-inline-end</span>
   </div>
</body>
</html> 

CSS inset-inline-end: auto Value

以下示例演示了 inset-inline-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-inline-end: auto;
      background-color: cornsilk;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-inline-end</span>
   </div>
</body>
</html>