HTML - <nobr> Tag



The HTML <nobr> tag is used to instruct the browser not to break the specified text (such as the usual line wrap that occurs at the right edge of the browser window).

This is used with the <wbr> tag, <wbr> advises the extended browser when it may insert a line break in an otherwise nonbreakable sequence of text. Unlike the <br> tag, which always causes a line break, even within a <nobr>- tagged segment, the <wbr> tag works only when placed inside a <nobr>- tagged content segment and causes a line break only if the current line has already extended beyond the browser's display window margins.

This tag is no longer recommended as it is deprecated and not supported in the HTML5. Instead you can use the CSS property.

Example

Consider the following example, where we are going to use the <nobr> tag.

<!DOCTYPE html>
<html>

   <head>
      <title>HTML nobr Tag</title>
   </head>

   <body>
      <nobr>This is a very long sequence of text that is forced to be 
      on a single line, even if doing so causes <wbr />
      
      the browser to extend the document window beyond the size of the 
      viewing pane and the poor user must scroll right <wbr />
      
      to read the entire line.
      </nobr>
   </body>

</html>

On running the above code, the output window will pop up, diplaying the text on the webpage.

Global Attributes

This tag supports all the global attributes described in HTML Attribute Reference

Advertisements