grid
UK[gr?d] US[ɡr?d]
n. Grid, non-substantive; coordinate grid on the map; (transmission lines, natural gas Pipes, etc.) System network
Plural: grids
columns
##UK['k?l?m] US['k?l?m] n. Column; column; column (plural noun of column); (of the fleet) column
css grid-columns property syntax
Function: Specifies the width of each column in the grid.
Syntax: grid-columns: length|%|none|inherit;
Description: length Reference to the grid containing the block . % Reference to the width of the containing block.?
Note: Using a grid system can be of tremendous value to print designers. The same changes are now being applied to online content. Grid properties provide the ability to adjust the size and position of titles, text, and images in a scalable grid. No browsers currently support grid-columns.
css grid-columns property example
//在 div 元素中部添加一個(gè)網(wǎng)格行,距右側(cè) 200 像素處添加另一個(gè),在余下空間的中間再添加一個(gè): div{grid-columns:50% * * 200px;}