Open In App

CSS | inset-inline-end Property

Last Updated : 26 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The inset-inline-end property is an inbuilt property in CSS. It is used to define logical inline end offset, not for the block offset or logical block. This property can apply to any writing-mode property. 

Syntax:

inset-inline-end: length|percentage|auto|inherit|initial|unset;

Property values:

  • length: It sets a fixed value defined in px, cm, pt etc. Negative values are allowed. Its default value 0px.
  • percentage: It sets the length in terms of percentage of the window size.
  • auto: It is used when it is desired that the browser determines the inset-inline-end.
  • initial: It is used to set the value of the inset-inline-end property to its default value.
  • inherit: It is used when it is desired that the element inherits the inset-inline-end property of its parent as its own.
  • unset: It is used unset the default inset-inline-end.

Below examples illustrate the inset-inline-end property in CSS: 

Example 1: 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>CSS | inset-inline-end Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: green;
            width: 200px;
            height: 20px;
        }
         
        .one {
            position: relative;
            inset-inline-end: 10px;
            background-color: cyan;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | inset-inline-end Property</b>
        <br>
        <br>
        <div>
            <p class="one">
                A Computer Science Portal for Geeks
            </p>
        </div>
    </center>
</body>
</html>


Output:

  

Example 2: 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>CSS | inset-inline-end Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: green;
            width: 200px;
            height: 120px;
        }
         
        .one {
            writing-mode: vertical-rl;
            position: relative;
            inset-inline-end: 50px;
            background-color: cyan;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | inset-inline-end Property</b>
        <br>
        <br>
        <div>
            <p class="one">
                A Computer Science Portal for Geeks
            </p>
        </div>
    </center>
</body>
</html>


Output:

 

Supported Browsers: The browsers supported by inset-inline-end property are listed below:

  • Google Chrome 87+
  • Firefox 63+
  • Edge 87+
  • Opera 73+
  • Safari 14.1+


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads