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

column-gap

Description

The column-gap property for CSS specifies spacing between columns, separating boxes in the container's inline axis.

Syntax

CSS

column-gap: value;

JS

object.style.columnGap = "value";

Values

<'column-gap'> = normal | <length-percentage>
normal

Represents a value of 1em on multi-column containers and 0px in all other contexts.

<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 (%).

Initial

normal

Examples

1 · length

2 · normal

3 · percentage

4 · JS