columngap
Columngap refers to the spacing between columns in a layout, and in standard CSS the official property is column-gap. It is a key part of the CSS Multi-column Layout Module and, in modern CSS, also relates to spacing between grid columns in CSS Grid. The term columngap is a common non-hyphenated variant or shorthand you might encounter, but the correct syntax uses the hyphenated column-gap.
The property defines the distance between adjacent columns. Its value can be a length (such as 20px,
In practice, a typical use would specify the number of columns and the gap between them, for
Browser support for column-gap is strong in modern engines, including Chrome, Firefox, Edge, and Safari. Older
See also: column-count, column-width, column-fill, and the general gap property used in CSS Grid and Flexbox layouts.