I typically utilize the following method to arrange my list items into columns:
ul.col-list > li {width: 30%; display: inline-block;}
However, I have encountered an issue where if the text within a list item overflows onto the next line, it pushes down the text of adjacent list items. An example can be seen here: http://jsfiddle.net/ayzwtujo/3/
Is there a simple solution to this problem?