I would like to know if CSS3 columns can be created horizontally.
for ex. if I have paragraphs a, b, c and d and I give them "column-count: 2", the output will be
ac
bd
I would like to create a column so that the result becomes
ab
cd
Does anyone know if this is possible using css3 columns?
I would prefer my page to be scalable, and why I prefer to use columns so that the column counter automatically creates the right amount of columns compared to the screen size.
The original page uses mostly 3-4 columns
source
share