- 3
Which tag contains the cell tags besides the table tag?
6 odpowiedzi
+ 3
<tr> to start a new row in a table </tr>
<th> for the header row </th>
<td> for table data </td>
colspan=x allows you to span multiple columns (horizontal)
rowspan=x allows you to span multiple rows (vertical)
https://www.w3schools.com/HTML/html_tables.asp
0
there is no tags for cells. you have to go through columns and rows.
try and edit the codE i will send you in minutes
0
I think question is little bit confusing. Though answer is <tr>
0
<tr>
0
<tr> to start a new row in a table </tr>
<th> for the header row </th>
<td> for table data </td>
colspan=x allows you to span multiple columns (horizontal)
rowspan=x allows you to span multiple rows (vertical)
0
Answer : <tr>