CSS 属性

CSS 属性 inset-block-start 确定元素的逻辑块起始偏移量。这取决于元素的 writing-modedirectiontext-orientation 它与物理偏移的 topbottom,或left 和 right CSS 属性相关。

属性值

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

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

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

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

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

适用范围

所有定位元素。

语法

inset-block-start = auto | <length-percentage> 

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

CSS inset-block-start: 设置偏移量

以下示例演示了使用inset-block-start 属性,传递给它的长度值,用于确定起始偏移值。

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

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

CSS inset-block-start: 百分比值

以下示例演示了使用 inset-block-start 属性并传递给它的百分比值,该值确定起始偏移值。写入模式设置为horizontal-tb。

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

   .inset-ex {
      writing-mode: horizontal-tb;
      position: absolute;
      inset-block-start: 50%;
      background-color: white;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-block-start</span>
   </div>
</body>
</html> 

CSS inset-block-start: 带方向

以下示例演示了inset-block-start属性与写入的使用-模式为vertical-lr,方向为rtl。

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

   .inset-ex {
      writing-mode: vertical-lr;
      direction: rtl;
      position: absolute;
      inset-block-start: 150px;
      background-color: white;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-block-start</span>
   </div>
</body>
</html> 

CSS inset-block-start: auto 值

以下示例演示了 inset-block-start 属性的使用,其中 auto 为传递给它的值,它确定起始偏移值。写入模式也设置为horizontal-tb。

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

   .inset-ex {
      writing-mode: horizontal-tb;
      position: absolute;
      inset-block-start: auto;
      background-color: white;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-block-start</span>
   </div>
</body>
</html>