How do you use rowspan in tables? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do you use rowspan in tables?

8th Sep 2016, 10:59 AM
Yissachar Liknaitzky
Yissachar Liknaitzky - avatar
1 Answer
+ 1
An example from w3schools: <table style="width:100%"> <tr> <th>Name:</th> <td>Bill Gates</td> </tr> <tr> <th rowspan="2">Telephone:</th> <td>55577854</td> </tr> <tr> <td>55577855</td> </tr> </table>
8th Sep 2016, 11:17 AM
Zen
Zen - avatar