La etiqueta <tr> se usa para definir una fila en una tabla HTML. El elemento <tr> contiene varios elementos <th> o <td>.
Sintaxis:
<tr>.....</tr>
Atributos:
- alinear: Alinear el contenido.
- bgcolor: especifica el fondo de la fila
- char: Alinea el contenido a un carácter
- charoff: establece el número de caracteres
- valign: alinear verticalmente el contenido
Ejemplo:
<!DOCTYPE html> <html> <head> <title>tr tag</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>tr Tag</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: los navegadores compatibles con la etiqueta HTML <tr> se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por Vijay Sirra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA