如何在 Mozilla Firefox 中防止 URL 中的换行符。使用 CSS white-space: nowrap; ? 还有其他解决方案吗?谢谢。
http://codepen.io/anon/pen/VeNJKW
.container {
width: 275px;
padding: 10px;
border: 1px solid black;
}
.nowrap {
white-space: nowrap;
}
<div class="container">
This is a URL: <span class = "">http://www.google.com/helloworld</span>
</div>