HTML & CSS Wiki
Advertisement

The CSS -webkit-padding-start Apple extension property provides the width of the starting padding. If the writing direction is left-to-right, this property overrides padding-left. If the writing direction is right-to-left, this property overrides padding-right.

Values[]

Value Description
<length> A length value specifying the width of the padding. Examples of lengths are px, em, etc.
<percentage> A percentage value specifying the width of the padding.


CSS example:

h1 {
    background:black;
    -webkit-padding-start:10px;
}
Advertisement