My Bootstrap 4 card contains list items, but I am struggling to make each list text appear as a single line and take up the full width of the card. I have tried using ellipsis or hiding the overflow with overflow:hidden
, but it is not working.
Here is the issue:
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet"/>
<div class="card">
<ul class="list-group list-group-flush">
<li class="list-group-item"><p>Long content ............. Here. Overflow Ellipsis or Hidden not working (This should be 1 line of card width, on all screen sizes, and depending on screen size)</p></li>
<li class="list-group-item"><p>Second List Item</p></li>
<li class="list-group-item"><p>Third List Item</p></li>
</ul>
</div>