column-float
column-flow
column-gap
column-width
Answer is Wrong!
Answer is Right!
The correct answer is C. column-gap.
The column-gap property defines the gap between columns in
132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"/>
Subscribe on YouTube
a multicolumn text flow. It is a length value that specifies the amount of space between columns. The default value is 0, which means that there is no gap between columns.
The column-float property specifies whether an element should float to the left or right of its containing block. The column-flow property specifies the direction of the columns in a multicolumn text flow. The column-width property specifies the width of each column in a multicolumn text flow.
Here is an example of how to use the column-gap property:
css
.multi-column {
columns: 2;
column-gap: 10px;
}
This code will create a two-column layout with a 10px gap between columns.