-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling on table.html
More file actions
54 lines (53 loc) · 891 Bytes
/
styling on table.html
File metadata and controls
54 lines (53 loc) · 891 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>
background colour to table
</title>
<style>
table{
border:blue;
}
th{background-color:pink;}
td{background-color:red;}
th,td{padding:30px;}
table{width:50%;
border-collapse:seperate;
border-spacing:20px 20px;
empty-cells:hide;
}
th,td{height:40px;
width:50px;}
caption{caption-side:left;}
</style>
</head>
<body>
<table width="400" height="300" border="2">
<caption>Student Details</caption>
<tr>
<th>Name</th>
<th>Rollno</th>
<th>marks</th>
</tr>
<tr>
<td>Rohit</td>
<td>34</td>
<td>92</td>
</tr>
<tr>
<td>Sagar</td>
<td>37</td>
<td>90</td>
</tr>
<tr>
<td>Akshay</td>
<td>28</td>
<td>92</td>
</tr>
<tr>
<td>Akshay</td>
<td>28</td>
<td></td>
</tr>
</table>
</body>
</html>