HTML & CSS Wiki
Register
Advertisement

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

Values[]

Value Description
<length> A length value specifying the width of the margin. Examples of lengths are px, em, etc.
<percentage> A percentage value specifying the width of the margin.
auto The margin is automatically determined.


CSS example:

h1 {
    -webkit-margin-start:4px;
}
Advertisement