Is it possible to create CSS3 columns on the horizontal plane?

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

+5
source share
1 answer

, , min/max . , , .

p {
    float: left;
    max-width: 160px;
    min-width: 100px;
    margin: 20px;
}

div { //wrapper
    width: 480px;
}

jsFiddle

.

+2

All Articles