padding-right
Quick Summary for padding-right
The padding-right CSS property sets the width of the padding area on the right of an element.
Code Usage for padding-right
/* <length> values */ padding-right: 0.5em; padding-right: 0; padding-right: 2cm;  /* <percentage> value */ padding-right: 10%;  /* Global values */ padding-right: inherit; padding-right: initial; padding-right: revert; padding-right: unset; 
More Details for padding-right

padding-right

The padding-right CSS property sets the width of the padding area on the right of an element.

An element's padding area is the space between its content and its border.

Note: The padding property can be used to set paddings on all four sides of an element with a single declaration.

Syntax

/* <length> values */ padding-right: 0.5em; padding-right: 0; padding-right: 2cm;  /* <percentage> value */ padding-right: 10%;  /* Global values */ padding-right: inherit; padding-right: initial; padding-right: revert; padding-right: unset; 

The padding-right property is specified as a single value chosen from the list below. Unlike margins, negative values are not allowed for padding.

Values

<length>

The size of the padding as a fixed value. Must be nonnegative.

<percentage>

The size of the padding as a percentage, relative to the width of the containing block. Must be nonnegative.

Formal definition

Initial value0
Applies toall elements, except table-row-group, table-header-group, table-footer-group, table-row, table-column-group and table-column. It also applies to ::first-letter and ::first-line.
Inheritedno
Percentagesrefer to the width of the containing block
Computed valuethe percentage as specified or the absolute length
Animation typea length

Formal syntax

<length> | <percentage>

Examples

Setting right padding using pixels and percentages

.content { padding-right: 5%; } .sidebox { padding-right: 10px; } 

Specifications

Specification
CSS Box Model Module Level 3 # padding-physical

See also

Introduction to the CSS basic box model padding-top, padding-bottom, padding-left and the padding shorthand The mapped logical properties: padding-block-start, padding-block-end, padding-inline-start, and padding-inline-end and the shorthands padding-block and padding-inline

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)DeutschFrançais日本語한국어Русский中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
There is a qualitative and quantitative difference between a day that begins with a little exercise, a book, meditation, a good meal, a thoughtful walk, and the start of a day that begins with a smartphone in bed.
Unknown
Random CSS Property

border-end-start-radius

The border-end-start-radius CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's writing-mode, direction, and text-orientation. This is useful when building styles to work regardless of the text orientation and writing mode.
border-end-start-radius css reference