Currently I have a list of elements of varying content sizes like so:
<ul class="list-group ul-right">
<li class="list-group-item">
<b> Name</b>
</li>
<li class="list-group-item">
<b> Longer Name</b>
</li>
<li class="list-group-item">
<b> Longest Name in the World </b>
</li>
<ul>
I want the li elements to all have the same width, and that width to be determined by the one that has the longest content. I've seen that I can use display: inline-block; to adjust the li element's width based on it's content, but I don't want them all to have different widths, but instead for each of them to share the width of the one that has largest content. How can I do this using html5, css, and/or bootstrap?