VOOZH about

URL: https://www.geeksforgeeks.org/css/css-padding-right-property/

⇱ CSS padding-right Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

CSS padding-right Property

Last Updated : 28 May, 2026

The padding-right property in CSS is used to add space between the content and the right border of an element. It helps improve spacing and alignment within webpage elements.

  • It sets the width of the right padding area of an element.
  • Padding is the space between the content and the border.
  • The value can be defined using units like px, %, or em.

Syntax:

padding-right: length | percentage | initial | inherit;

Property values:

  • length: This mode is used to specify the size of padding as a fixed value. The default value is 0. It must be non-negative.
  • percentage: This mode is used to set the right padding in percent of the width of the element. It must be non-negative.
  • initial: This property is used to set the default value.

Example: Here, we use padding-right: length; property.

Example:  Here, we are using padding-right: percentage; property.

Example: Here, we are using padding-right: initial; property.

Comment