CSS - inset-inline Property



The CSS property inset-inline determines the logical start and end offsets of an element in the inline direction. 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, for the physical offsets.

It is a shorthand property for inset-inline-end and inset-inline-start CSS properties.

Possible Values

The CSS property inset-inline 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-inline = <'top'>{1,2}  

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

CSS inset-inline - Setting Offsets

The following example demonstrates the use of inset-inline property with two length values passed to it, which determines the start and end offset values.

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

   .inset-ex {
      text-orientation: sideways-right;
      direction: rtl;
      position: absolute;
      inset-inline: 25px 45px;
      background-color: pink;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-block</span>
   </div>
</body>
</html>

CSS inset-inline - Percentage Value

The following example demonstrates the use of inset-inline property with two percentage values passed to it, which determines the start and end offset values in the inline direction. The writing mode is set as horizontal-tb.

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

   .inset-ex {
      writing-mode: horizontal-tb;
      position: absolute;
      inset-inline: 20% 10%;
      background-color: pink;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-inline</span>
   </div>
</body>
</html>

CSS inset-inline - Mixed Value

The following example demonstrates the use of inset-inline property with mixed values (length and percentage) passed to it, which determines the start and end offset values in the inline direction. The writing mode is also set as vertical-lr.

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

   .inset-ex {
      writing-mode: vertical-lr;
      position: absolute;
      inset-inline: 25px 45%;
      background-color: pink;
   }
</style>
</head>
<body>
   <div>
      <span class="inset-ex">inset-inline</span>
   </div>
</body>
</html>

CSS inset-inline - auto Value

The following example demonstrates the use of inset-inline property with auto as value passed to it, which determines the start and end offset values. The writing mode is also set as horizontal-tb.

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

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

CSS inset-inline - Related Properties

The following table lists all the related properties of CSS inset-inline:

Property Description
bottom Sets the vertical position of a positioned element at the bottom.
left Sets the horizontal position of a positioned element on the left side.
right Sets the horizontal position of a positioned element on the right side.
top Sets the vertical position of a positioned element at the top.
inset Sets the physical offsets of an element.
inset-inline-end Defines the logical inline end offset of an element.
inset-inline-start Defines the logical inline start offset of an element.
writing-mode Sets whether lines of text are displayed horizontally or vertically.
direction Sets the direction of text, either left-to-right or right-to-left.
text-orientation Sets the orientation of text characters in a line.
Advertisements