I am facing an issue with a lengthy text inside a div with a class of "col-md-3". The text is so long that it appears to be overlapping with the content of another div. Adding spaces is not an option as it is an email address, and it displays fine on some mobile devices.
Below is an example:
<div class="col-md-3">text with space</div><br/>
<div class="col-md-6">text with space again</div><br/>
<div class="col-md-3"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="97e1f2e5eefbf8f9f0e3f2efe3e0fee3fff9f8e4e7f6f4f2fef9f5f2e3e0f2f2f9d7e4f8fae3fffef9f0fff2e5f2b9f4f8fa">[email protected]</a></div>
Is there a CSS class or property that can force the text to break and appear on a new line?