Open In App

CSS | padding-block-start Property

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

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

Syntax:

padding-block-start: 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 is 0px.
  • percentage: It is same as the length but the size is set in terms of percentage of the window size.
  • auto: It is used when it is desired that the browser determines the padding-block-start size.
  • initial: It is used to set the value of the padding-block-start property to its default value.
  • inherit: It is used when it is desired that the element inherits the padding-block-start property of its parent as its own.
  • unset: It is used unset the default padding-block-start.

Below example illustrate the padding-block-start property in CSS: 

Example 1: 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>CSS | padding-block-start Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 110px;
            height: 80px;
        }
        .two {
            padding-block-start: 40px;
            background-color: purple;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | padding-block-start 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: 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>CSS | padding-block-start Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 110px;
            height: 80px;
        }
        .two {
            padding-block-start: 20px;
            writing-mode: vertical-lr;
            background-color: purple;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | padding-block-start 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-block-start property are listed below:

  • Google Chrome 87
  • Edge 87
  • Firefox 41
  • Opera 73
  • Safari 12.1


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads