Download - Table

Transcript

Qus: Create a table using rowspan and columnspan attributes.Sol:

table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { font-size:50px; padding:20px;margin:20px; } Table A B C D 1 2 3 4 5 6 7 8 9 10 11

OUTPUT:


Top Related