<nobr> HTML non-breaking text element
Deprecated
Avoid using this feature in new projects. This feature may be a candidate for removal from web standards or browsers.>
The <nobr> HTML element prevents the text it contains from automatically wrapping across multiple lines, potentially resulting in the user having to scroll horizontally to see the entire width of the text.
Warning:
Although this element is widely supported, it was never standard HTML, so you shouldn't use it. Instead, use the CSS property white-space like this:
html
<span class="nobr">Long line with no breaks</span>
css
.nobr {
white-space: nowrap;
}