How can I split a dropdown ul>li list into two columns using Bootstrap?
I am attempting to divide the ul>li into two columns, with one aligning to the left and the other to the right.
This is how I am currently doing it:
<div class="btn-group">
<button type="button" class="btn btn-default btn-lg">big button</button>
<button type="button" class="btn btn-default btn-lg dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span></button>
<ul class="dropdown-menu text-left">
<li><a href="#">full name must align to left <span class="text-right">short name - align to right</span></a></li>
<li><a href="#">left <span class="text-right">right</span></a></li>
<li><a href="#">left<span class="text-right">right</span></a></li>
<li><a href="#">full name must align to left <span class="text-right">short name - align to right</span></a></li>
</ul>
</div>
However, everything is currently aligned to the left. What can I do to split the ul>li> hyperlinks into two columns so that one half aligns left and the other half aligns right?