I'm facing an issue with my code snippet:
<div class="row">
<div class="w-100 col-auto col-lg-5 w-auto p-3 p-lg-5 m-4 rounded-sm bg-dark text-white shadow-lg">
<h3>This is a very very very long Text</h3>
</div>
</div>
When rendered, it leads to:
It seems that the column is too wide for smaller screens like Mobile or Firefox, possibly due to excessive Margin and Padding.
Is there a way to address this issue?