remove

How to remove white space underline at end of links...

This is a very short and quick solution for web designers. The situation of today is an style link becomes trashed when having any kind of white spaces just before the closing

Imagine a link like:

<a title="example">
 example
</a>

will result in a display like:
example 

This is a bug of all browsers I know, but there is a quick PHP fix for it:

$html_source = preg_replace( "/\s+<\/a>/i", "</a>", $html_source );