I've implemented a bootstrap layout on a basic page, featuring rows with columns arranged in fullscreen. The width and height are not specified and should remain as is.
Below is my layout definition:
<div class="container-fluid">
<div class="row">
<div class="section col-lg">
<ul class="list-group>
Within the ul element, there's a button structured like this:
<a type="button" class="btn btn-success list-group-item list-group-item-warning"
href="https://www.google.at" target="_blank">
<i class="material-icons">extension</i>
<br>
asdfasdfasdfasd fasdfasdfasdfasdfasdf
</a>
Unfortunately, I'm facing an issue where the text on the button overflows and doesn't wrap inside it.
https://i.sstatic.net/flIGP.jpg
I've attempted to resolve this by following the solution provided on Force a line break inside the button's text when using small screens, but it only resulted in cutting off the text instead of wrapping it to the next line.
Additionally, I experimented with overflow: hidden;
, which merely hides the text before it exceeds the button's boundaries.