前端之家收集整理的这篇文章主要介绍了
如何防止html链接中的换行符?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
也就是说,整个html
链接必须在第一行或第二行,而不是两行。
根据
this post:
NOBR Tag not suppored by W3C. So use the alternative tag for it.
Instead of giving NOBR tag give the tag as
style=”white-space: nowrap”.
所以这意味着你应该说:
<a style="white-space: nowrap">link</a>
或者甚至更好,把它放在你的CSS中:
a { white-space: nowrap; }
原文链接:https://www.f2er.com/html/232671.html