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

padding-left

The padding-left CSS property sets the width of the padding area to the left 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-left: 0.5em; padding-left: 0; padding-left: 2cm;  /* <percentage> value */ padding-left: 10%;  /* Global values */ padding-left: inherit; padding-left: initial; padding-left: revert; padding-left: unset; 

The padding-left 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 left padding using pixels and percentages

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

Specifications

Specification
CSS Box Model Module Level 3 # padding-physical

See also

Introduction to the CSS basic box model padding-top, padding-right, padding-bottom 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日本語한국어Português (do Brasil)Русский中文 (简体) 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...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

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
Treasure every moment that you have and treasure it more because you shared it with someone special, special enough to spend your time...and remember that time waits for no one.
Unknown
Random CSS Property

all

The all shorthand CSS property resets all of an element's properties except unicode-bidi, direction, and CSS Custom Properties. It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin.
all css reference