CSS - inset-block-end



The CSS property inset-block-end determines the logical block end offset of an element. It depends upon the writing mode, direction and text orientation of the element. It relates to the top and bottom, or left and right CSS properties.

Possible Values

The CSS property inset-block-end takes the same set of values as left CSS property, which are as follows:

  • <length> − Can specify a negative, null or positive value.

  • <percentage> − Percentage of the container's width.

  • auto − Default value. Browser calculates the left position.

  • inherit − Specifies the same value as computed from its parent element.

Applies To

All positioned elements.

Syntax

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

/* <length> values */
inset-block-end: 5px;
inset-block-end: 3.4em;
   
/* <percentage>s of the width or height of the containing block */
inset-block-end: 15%;
   
/* Keyword value */
inset-block-end: auto;

CSS inset-block-end - Setting Offset

The following example demonstrates the use of inset-block-end property with a length value passed to it, which determines the end offset value.

<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 - Percentage Value

The following example demonstrates the use of inset-block-end property with a percentage value passed to it, which determines the end offset value. The writing mode is set as 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 - With direction

The following example demonstrates the use of inset-block-end property with writing-mode as vertical-lr and text-orientation as 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 Value

The following example demonstrates the use of inset-block-end property with auto as value passed to it, which determines the end offset value. The writing mode is also set as 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>
Advertisements