+ 2
Do CSS have column property?
I mean can we create text columns like the ones in newspapers using CSS. If yes what is the property or value or element.
6 Answers
+ 3
This is very helpful thanks for asking..
+ 3
How did your columns experience work out .?
+ 2
The columns CSS property is a shorthand property allowing to set both the column-width and the column-count properties at the same time.
/* Column width */
columns: 1em;
/* Column count */
columns: auto;
columns: 1;
/* Combination of column width and count */ columns: 1 auto;
columns: auto 12em;
columns: auto auto;
/* Global values */
columns: inherit;
columns: initial;
columns: unset;
+ 1
thank you very much @ very hard @
if you don't mind can you teach me how to efficiently use w3school have been using it for a while and I don't have idea of Searching specifically what I want.
can you give me the hinemt
+ 1
@Williams yes very well