css - Wrapping text with columns in div -
how can wrap text inside 1 div 3 columns? tried not working.
<pre> #about-text{float:left;word-wrap:break-word;width:100px;height:150px;} </pre>
#about-text{ width:700px; height:200px; -webkit-column-count: 3; -moz-column-count: 3; column-count: 3; -webkit-column-gap: 10px; -moz-column-gap: 10px; column-gap: 10px; }
a demo: http://jsfiddle.net/mwy5u/
read more columns
Comments
Post a Comment