C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
HTML <tr> tagHTML <tr> tag is used to define the rows in the table. The <tr> tag can consist one or more <th> head cells and <td> data cells to define a single row of HTML table. The <tr> tag must be a direct child of <table> element or it can be nested child of <thead>, <tbody>, and <tfoot> elements. Syntax<tr>.......</tr> Following are some specifications about the HTML <tr> tag
Example<!DOCTYPE html> <html> <head> <title>HTML tr tag</title> <style> table{ border-collapse: collapse; margin-left: 350px; } th,td{ padding: 25px;} th{ background-color: #005cb9;} td{ background-color:#98f5ff;} </style> </head> <body> <h2>Example of tr tag</h2> <table border="1"> <caption><b>Top Three performers of Winter Olympic Medals</b></caption> <tr> <th>Rank</th> <th>Country</th> <th>Total medals</th> </tr> <tr> <td>1</td> <td>Norway</td> <td>329</td> </tr> <tr> <td>2</td> <td>United State</td> <td>282</td> </tr> <tr> <td>3</td> <td>Germany</td> <td>228</td> </tr> </table> </body> </html> Output: Attribute:Tag-specific attributes:
Global attribute:The <tr> tag supports the Global attributes in HTML. Event attribute:The <tr> tag supports the Event attributes in HTML. Supporting Browsers
Next TopicHTML track Tag
|