Open In App
Related Articles

HTML | <td> nowrap Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML <td> nowrap Attribute is used to specify that the content present inside the cell should not wrap. It contains the Boolean value. It is not supported by HTML 5.

Syntax:

<td nowrap>

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>HTML nowrap Attribute</title>
    <style>
        table,
        th,
        td {
            border: 1px solid black;
            border-collapse: collapse;
            padding: 6px;
        }
    </style>
</head>
  
<body style="text-align:center">
  
    <h1 style="color: green;">GeeksforGeeks</h1>
    <h2>HTML <td>nowrap Attribute</h2>
    <center>
        <table>
            <tr>
                <th>Name</th>
                <th>Age</th>
            </tr>
            <tr>
                <td nowrap>Ajay</td>
                <!-- This cell will take up space on 
                    two rows -->
                <td rowspan="2">24</td>
            </tr>
            <tr>
                <td>Priya</td>
            </tr>
        </table>
    </center>
  
</body>
  
</html>


Output:

Supported Browsers: The browsers supported by HTML <td> nowrap Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Apple Safari
  • Opera

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 31 Oct, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials