I'm using this piece of code:
<div class="home_notizia_page_riassunto">
<?php echo get_the_excerpt();?>
<a href="<?php echo get_permalink();?>"> <nobr>- <span style="color:red;"> Leggi tutto </span></nobr></a>
</div>
But I get this errore in W3C validator:
Element
nobr
not allowed as child of elementa
in this context.
I tried to put nobr
in many place but the problem still remains the same. Any suggestion?
The
<nobr>
tag is deprecated in HTML 5. Use CSSwhite-space
instead:From the W3 wiki: