The HTML <nobr> element prevents a text from breaking into a new line automagically, so it is displayed on one long line and scrolling might be necessary. This tag is not standard HTML and should not be used.

Non-standard.

This tag is not standard HTML and should not be used. Instead use the CSS property white-space like this:
<span style="white-space: nowrap">Long line with no breaks</span>
