我在用这段代码:

<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>

但我在W3C验证器中发现这个错误:
在此上下文中,元素nobr不允许作为元素a的子元素。
我试着把nobr放在许多地方,但问题仍然是一样的。有什么建议吗?

最佳答案

<nobr> tag is deprecated in HTML 5。改用CSSwhite-space

 <a href="<?php echo get_permalink();?>">
     <span style="white-space: nowrap">- <span style="color:red;"> Leggi tutto </span>
     </span>
 </a>

the W3 wiki
white space属性指定元素内部的空白
被处理。

10-02 14:26