I have a table. One column of this table is a email address. The email is a string without spaces.
When there's no enough space I need to break this text into multiple lines in function of '@' and '.' charactes.
Given the following email strings:
john@email.com
richard.developer@email.com
This is what I expect:
john@email.com
richard
.developer
@email.com
This is what I not expect:
john@email.com
richard.
developer
@email.com
How could I achieve this using CSS and HTML?