I am facing an issue where text with commas is splitting to the next line. To better understand, here's an example:
https://i.sstatic.net/85WnY.png
Instead, what I would like is for the text to move to the next line without splitting. Here's the desired result:
https://i.sstatic.net/gJD0x.png
Below is the code snippet I am working with:
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}
<table style="width:100%">
<tr>
<th width="50%;">Address</th>
<th width="50%;">Email</th>
</tr>
<tr>
<td style="">416, Willow Brook Lane, Suite 567, Apartment Riverview, Brookside Complex, Greenfield Eastern District, Riverside County, California, United States</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="1b757a767e5b7e767a727735787476">[email protected]</a></td>
</tr>
</table>
Any suggestions on how I can achieve the desired output? Thank you.