HTML | <th> nowrap Attribute Last Updated : 26 Jun, 2019 Comments Improve Suggest changes Like Article Like Report The HTML <th> nowrap Attribute is used to specify that the content present inside the header cell should not wrap. It contains the Boolean value. It is not supported by HTML 5. Syntax: <th nowrap> Example: html <!DOCTYPE html> <html> <head> <title> HTML th nowrap Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML th nowrap Attribute</h2> <table border="1"> <tr> <th>NAME</th> <th nowrap> GeeksforGeeks is a computer science portal </th> </tr> <tr> <td>BITTU</td> <td>CSE</td> </tr> <tr> <td>RAKESH</td> <td>EC</td> </tr> </table> </body> </html> Output: Supported Browsers: The browser supported by HTML <th> nowrap attribute are listed below: Google Chrome Internet Explorer Firefox Safari Opera Comment More infoAdvertise with us Next Article HTML | <th> nowrap Attribute jit_t Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML <td> nowrap Attribute The HTML <td> nowrap Attribute is used to specify that the content present inside the cell should not wrap. It contains the Boolean value. Note: It is not supported by HTML5.Syntax:<td nowrap>Example: This example illustrates the use of <td> nowrap with an HTML document.html<!DO 1 min read HTML | <th> scope Attribute The HTML <th> scope Attribute is used to specify the header cell is used for header row, column, colgroup or rowgroup. This attribute does not display any visual effect on the browser but it is used for screen readers. Syntax: <th scope="col | row | colgroup | rowgroup"> Attribute Values 1 min read HTML | <td> scope Attribute The HTML <td> scope Attribute is used to specify the cell is used for header row, column, colgroup or rowgroup. This attribute does not display any visual effect on the browser but it is used for screen readers. Note: This attribute is not supported by HTML5. Syntax: <td scope="col | row | 1 min read HTML | <pre> width Attribute The HTML <pre> width Attribute is used to specify the maximum number of characters per line. Note: The width Attribute is not supported by HTML5 Syntax: <pre width="number"> Attribute Values: number: It is used to set the maximum number of characters. Example: html <!DOCTYPE html> 1 min read HTML | <th> abbr Attribute The HTML <th> abbr Attribute is used to specify the shorter version of content in header cell. It does not describe any visual effect but it is used by screen readers. Syntax: <th abbr="text"> Attribute Values: text: It contains the short description of header cell content. Example: html 1 min read Like