Enrique Moreno Tent
Enrique Moreno Tent

Reputation: 25277

css3 columns without cutting paragraphs

Im trying to set a series of in a column layout. Ive been trying with CSS3 but it cuts the elemens in half. Heres an example:

http://jsfiddle.net/zh9zq/

Is it possible to have the columns not cut certain elements in half? Thanks

Upvotes: 4

Views: 2614

Answers (1)

Enrique Moreno Tent
Enrique Moreno Tent

Reputation: 25277

Solution found:

-webkit-column-break-inside:avoid;
-moz-column-break-inside:avoid;
-o-column-break-inside:avoid;
-ms-column-break-inside:avoid;
column-break-inside:avoid;

Upvotes: 12

Related Questions