En este artículo, definimos una fila en una tabla usando una etiqueta <tr> en un documento. Esta etiqueta se utiliza para definir una fila en una tabla HTML. El elemento tr contiene varios elementos th o td .
Sintaxis:
<tr> ... </tr>
Ejemplo:
<!DOCTYPE html> <html> <head> <title> How to define row of a table </title> <style> body { text-align: center; } h1 { color: green; } th { color: blue; } table, tbody, td { border: 1px solid black; border-collapse: collapse; } </style> </head> <body> <center> <h1>GeeksforGeeks</h1> <h2> HTML5: How to define a row in a table? </h2> <table> <thead> <!-- tr tag starts here --> <tr> <th>Name</th> <th>User Id</th> </tr> <!-- tr tag end here --> </thead> <tbody> <tr> <td>Shashank</td> <td>@shashankla</td> </tr> <tr> <td>GeeksforGeeks</td> <td>@geeks</td> </tr> </tbody> </table> </center> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA