-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_css.html
73 lines (71 loc) · 1.9 KB
/
table_css.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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<title>Table CSS</title>
<style>
h1{
text-align: center;
}
table{
/* border: 2px solid black; */
width: 100%;
height: 50%;
border-collapse: collapse;
}
/* tr{
} */
th,td{
border-bottom: 2px solid black;
border: 2px solid black;
text-align: center;
width: 16%;
vertical-align: bottom;
text-align: left;
}
</style>
</head>
<body>
<h1>Table CSS</h1>
<table>
<tr style="background-color: rgb(91, 82, 82); color: white;">
<th>Roll</th>
<th>Name</th>
<th>Math</th>
<th>Sci</th>
<th>Eng</th>
<th>Total</th>
</tr>
<tr>
<td>1</td>
<td><input style="height: 100%;width: 100%;border-radius: 0;border:none;" placeholder="Insert Data" /></td>
<td>90</td>
<td>87</td>
<td>67</td>
<td>244</td>
</tr>
<tr>
<td>1</td>
<td>CodeKul</td>
<td>90</td>
<td>87</td>
<td>67</td>
<td>244</td>
</tr>
<tr>
<td>1</td>
<td>CodeKul</td>
<td>90</td>
<td>87</td>
<td>67</td>
<td>244</td>
</tr>
<tr>
<td>1</td>
<td>CodeKul</td>
<td>90</td>
<td>87</td>
<td>67</td>
<td>244</td>
</tr>
</table>
</body>
</html>