HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

margin-block

Description

The margin-block property for CSS is shorthand for margin-block-start and margin-block-end.

Syntax

CSS

margin-block: value;

JS

object.style.marginBlock = "value";

Values

<'margin-block'> = <'margin-top'>{1,2}
<'margin-top'> = <length-percentage> | auto
<length-percentage> =
    <length> |
    <percentage>
<length>

Specifies the length using a number followed by a unit of measurement.

<percentage>

Specifies the percentage using a number followed by a percent sign (%).

auto

Automatically specified by the user agent.

Examples

1 · auto

2 · length

3 · percentage

4 · JS