Css Styling list elements in two columns
问题 I have a list of items with different width that I would like to display in two columns. Is it possible to do it only with css? HTML: <div class="row-fluid custom-row-margin-30"> <div class="span12"> <ul class="thumbnails custom"> <li class="span6 box1"> <p>hola</p> <p>hola</p> </li> <li class="span6 box2"> <div>hola</div> </li> <li class="span6 box3"> <div>hola</div> </li> </ul> </div> <!-- span12 --> </div> CSS: .box1 {background-color: green} .box2 {background-color: blue} .box3