CSS | padding-block Property Last Updated : 08 Feb, 2022 Comments Improve Suggest changes Like Article Like Report The padding-block property in CSS is used to define the logical block start and end padding of an element. This property helps to place padding depending on the element’s writing mode, directionality, and text orientation.Syntax: padding-block: length|percentage|auto|inherit|initial|unset; Property values: length: It sets a fixed value defined in px, cm, pt etc. Negative values are also allowed. Its default value is 0px.percentage: It is the same as length but it sets the padding-block size in terms of percentage of the window size.auto: It is used when it is desired that the browser determines the padding-block size.initial: It is used to set the value of the padding-block property to its default value.inherit: It is used when it is desired that the element inherits the padding-block property from its parent element.unset: It is used unset the default padding-block property value. Below example illustrate the padding-block property in CSS:Example 1: html <!DOCTYPE html> <html> <head> <title>CSS | padding-block Property</title> <style> h1 { color: green; } div { background-color: yellow; width: 110px; height: 80px; } .two { padding-block: 20px 40px; background-color: purple; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | padding-block 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 Property</title> <style> h1 { color: green; } div { background-color: yellow; width: 110px; height: 80px; } .two { padding-block: 20px 40px; writing-mode: vertical-lr; background-color: purple; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | padding-block 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 browser supported by padding-block property are listed below: FirefoxGoogle ChromeEdgeOpera Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-block Comment More infoAdvertise with us Next Article CSS | padding-block Property S skyridetim Follow Improve Article Tags : Web Technologies CSS CSS-Properties Similar Reads CSS | padding-block-end Property The padding-block-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-block-end: length|percentage|auto|inherit|initial|unset; Property v 2 min read CSS | padding-block-start Property 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 va 2 min read CSS scroll-padding-block Property The scroll-padding-block property is used to set all the scroll padding to the start and end of a scroll container or element in the block dimension at once. This property is shorthand for the scroll-padding-block-start and scroll-padding-block-end property.Hence, the scroll-padding values represent 2 min read CSS | margin-block Property The margin-block property is used to define the logical block end margin of an element. This property helps to place margin depending on the element's writing mode, directionality, and text orientation.Syntax: margin-block-end: length | auto | initial | inherit | unset; Property values: length: Sets 2 min read CSS scroll-padding-block-end Property The scroll-padding-block-end property is used to set all the scroll padding to the end of a scroll container or element in the block dimension at once. The end side is the bottom side for horizontal-tb writing mode and left or right side for vertical-rl or vertical-lr writing mode respectively. Wher 2 min read CSS scroll-padding-block-start Property The scroll-padding-block-start property is used to set all the scroll padding to the start of a scroll container or element in the block dimension at once. The start side is the top side for horizontal-tb writing mode and right or left side for vertical-rl or vertical-lr writing mode respectively. W 2 min read CSS | min-block-size Property The min-block-size property in CSS is used to create the minimum horizontal or vertical size of an element. If the writing direction is horizontal then min-block-size is equivalent to min-height property, and if it is in vertical mode then equal to min-width property. Syntax: min-block-size: length| 2 min read CSS | padding-inline Property The padding-inline property in CSS is used to define the logical inline start and 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: length|percentage|auto|inherit|initial|unset; Prope 2 min read CSS | max-block-size Property The CSS max-block-size property is used to create the maximum size of an element in the direction opposite that of the writing direction. Like if the writing direction is horizontal then max-block-size is equivalent to max-height, and if it is in vertical mode then equal to max-width. Syntax: max-bl 2 min read CSS inset-block-start Property The inset-block-start property is used to define logical block start offset, not for the inline offset or logical block. This property can apply to any writing-mode property. Syntaxinset-block-start: length|percentage|auto|inherit|initial|unset;Property ValuesValuesDescriptionslength It sets a fixe 2 min read Like