Menu
×
×
Correct!
Exercise:Use the correct HTML attribute to make the second TH element span two rows.
<table>
<tr> <th>Name</th> <td>Jill Smith</td> </tr> <tr> <th @(11)>Phone</th> <td>555-77854</td> </tr> <tr> <td>555-77854</td> </tr> </table>
<table>
<tr> <th>Name</th> <td>Jill Smith</td> </tr> <tr> <th rowspan="2">Phone</th> <td>555-77854</td> </tr> <tr> <td>555-77854</td> </tr> </table>
<table>
<tr> <th>Name</th> <td>Jill Smith</td> </tr> <tr> <th rowspan='2'>Phone</th> <td>555-77854</td> </tr> <tr> <td>555-77854</td> </tr> </table> Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 90 exercises.
Are you sure you want to continue?