Open In App

CSS | inset-inline-end Property

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:

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



Example 1: 




<!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: 




<!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:


Article Tags :