how can I prevent line break in a URL in Mozilla Firefox. With using CSS white-space: nowrap; ? Any other solutions? Thanx.
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>
nowrap style is not applied in your code, should be:
->