D
D
Denis2014-05-05 01:30:52
css
Denis, 2014-05-05 01:30:52

Columns with text

Goodnight! How can the following solution be implemented? There are three columns, they will contain text. Columns have a minimum height (for example, min-height: 400px;) after the first column is filled with text, the text should automatically move to the second, and then, respectively, to the third. If the text does not fit into three columns, then the height of the columns should increase. Unfortunately, I'm not strong in js, is there any way to solve this using css.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
T
timtimIT, 2015-10-28
@timtimIT

Set these calendars:
Although, if this is a table, then it will not work.
Can you send the code?

P
Pavel Torbeev, 2015-10-28
@glizer

Use bootstrap's grid
system , i.e. calendar divs should have classes, for example:

<div class="col-lg-4 col-md-6"> </div>
<div class="col-lg-4 col-md-6"> </div>
<div class="col-lg-4 col-md-6"> </div>

A
addd, 2015-10-28
@addd

if you do td{display: inline-block } then it will be displayed in one column, but I need it to be in three columns, only when compressed it becomes one column.

A
Andrey Raboy, 2015-10-28
@raba

<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12"> </div>
<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12"> </div>
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12"> </div>

so what?

Y
Yuri Lobanov, 2014-05-05
@sten8509

Watched?
htmlbook.ru/css3-na-primerah/mnogokolonochnyy-tekst

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question