Open In App

CSS | padding-inline-end Property

The padding-inline-end property in CSS is used to define the logical block end padding of an element. This property helps to place padding depending on the element’s writing mode, directionality, and text orientation.

Syntax: 



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

Property values: 

Below example illustrates the padding-inline-end property in CSS: 



Example 1:  




<!DOCTYPE html>
<html>
<head>
    <title>CSS | padding-inline-end Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 110px;
            height: 80px;
        }
        .two {
            padding-inline-end: 40px;
            background-color: purple;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | padding-inline-end Property</b>
        <br><br>
        <div class="one">A Computer</div>
        <div class="two">Science Portal</div>
        <div class="three">For Geeks</div>
    </center>
</body>
</html>

Output: 

Example 2: 




<!DOCTYPE html>
<html>
<head>
    <title>CSS | padding-inline-end Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 110px;
            height: 80px;
        }
        .two {
            padding-inline-end: 20px;
            writing-mode: vertical-lr;
            background-color: purple;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | padding-inline-end Property</b>
        <br><br>
        <div class="one">A Computer</div>
        <div class="two">Science Portal</div>
        <div class="three">For Geeks</div>
    </center>
</body>
</html>

Output: 

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

Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-end 


Article Tags :