El atributo HTML <td> nowrap se usa para especificar que el contenido presente dentro de la celda no debe ajustarse. Contiene el valor booleano. No es compatible con HTML 5.
Sintaxis:
<td nowrap>
Ejemplo:
<!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>
Producción:
Navegadores compatibles: los navegadores compatibles con HTML <td> nowrap Attribute se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA