0
Hello everyone whats tr tag in html
11 ответов
+ 6
Table Row
<table>
<tr>
<!-- First Row - - >
</tr>
<tr>
<!-- Second Row -->
</tr>
</table>
+ 5
TR stand for table row...
it's the row elements of a TABLE tag, and expect table cell as content (TD table data, TH table header)
+ 4
You can google such things .
+ 2
This is explained in the Tutorial
The second sentence
https://www.sololearn.com/learn/HTML/1033/
+ 2
Ok thanks for your answer
0
tr means Table Row.
0
Most welcome
0
Table Row
0
Tr=Table row
You can made chat with it
Keep to using important think.
0
<tr>...</tr> is a tag for table row
below is an example table
<table>
<tr>
<!—first row—>
<td></td>
<td></td>
</tr>
<tr>
<!—second row—>
<td></td>
<td></td>
</tr>
</table>
you can have many table rows and many table data in them
- 1
Tr means table row... It is just a shelf of row in html where the table cells will be stored