Text wrap for email address

I have an email address not wrapping, https://prnt.sc/rrnech

This is the code:

// < span style="color: #d22630;">
// < span style="color: #d22630;">Email</span> <a href="mailto:mknaap@cassinisystems.com" style=“word-wrap: break-word;outline: none;”>mknaap@cassinisystems.com < / a>

I added the word-wrap from another forum post but it’s not having the effect.

The page is here: https://csdev.space/home/contact/

Thanks.

Hi @theotcspace,

Thank you for reaching out to us. I checked your page and there is a syntax error in your HTML markup which is preventing your inline CSS to work. Please replace your code with the following:

<a href="mailto:mknaap@cassinisystems.com" style="outline:none;word-break: break-word;">mknaap@cassinisystems.com</a>

Let us know how this goes!

Many thanks - perfect outcome.

You’re most welcome, @theotcspace.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.