When you browse domains at websites like Sedo.com many domain names are simply hard to read. Anything with a "tail" are all that much harder to read. Letters like P, L, G, Q, J and even letters like Z, E can look like different letters in the lower case format.
Using simple code can remove this unneeded underline and I highly suggest it when you list your domain names as well and hope Sedo makes a change.
<style>
a{text-decoration:none}
</style>
Add the above to the head style in an HTML page.
This code makes the domain Blue which helps people know it’s a link as well.
<style>
<!–
A:link {text-decoration: none; color: #0000ff}
A:visited {text-decoration: none; color: #0000ff}
A:hover { text-decoration: none; color: #ff0000 }
//–>
</style>
Php code
<a href="remove-hyperlink-underline.php" style="text-decoration: none">no hyperlink underline</a>
The good thing, most domain type sites already do this. Afternic, Bido and TDNAM are a couple that have no hyperlink underlines. It’s hard enough to sell a domain right now, so make it easier for your potential customer to be able to read it.

