html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Use of rowspan attribute</title>
<!--© Riyad Rahman-->
<!--I am learning and providing codes please upvote my code if you liked it-->
</head>
<body>
<h3 >Cell that spans two rows</h3>
<! rowspans refers row Spanning.It is used to expand a table cell or in other words to divide table cell into one or more rows>
<table border="1">
<tr>
<th>Name</th>
<td>Robert Mayors</td>
<th></th>
</tr>
<tr><th rowspan="2">Nationality</th>
<td>France</td>
</tr>
<tr>
<td>Spain</td>
</tr>
</table>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run