Looking to design a table using Bootstrap and include some pull-left and pull-right content in a column? Check out this code snippet: http://jsfiddle.net/Zoker/sgdfgkvL/
<td>
<div class="pull-left">Some content</div>
<div class="pull-right">Some other content</div>
<a href="#">The actual content</a>
</td>
The issue arises on mobile devices when the text "The actual content" overflows in the field (refer to the fiddle for demonstration).
If you have a solution or recommendation on how to resolve this problem, please feel free to share.