リスト項目が 1 つあり、リストを 2 つの列に広げたいと考えています。
私はこれを機能させましたが、liの1つに長いテキスト文字列があると、反対側の列にギャップが生じます
ここにデモがあります: http://jsfiddle.net/q7ryE/
テキストの長い文字列がある場合、これを回避するにはどうすればよいですか?すべてがギャップ/スペースのない2つの列の素敵なリストビューに収まりますか?
<div class="container">
<ul class="list removedArea">
<li><span>more text here</span></li>
<li><span>more text here</span></li>
<li><span>more text here</span></li>
<!-- Long string causes gap pushing the li down on opposite site -->
<li><span class="fl">this is a very long name which will overlap and cause a gap, i need to reduce this gap when there is a long string of text</span>
</li>
<li><span>more text here</span></li>
</ul>
</div>