CSS3.html
931 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
55
56
57
58
59
60
61
62
63
64
65
66
67
<html>
<meta charset="utf-8">
<title>CSS3</title>
<style>
table
{
border-collapse: collapse;
widtd: 100%;
}
th, td
{
text-align: center;
padding: 8px;
}
tr:nth-child(even)
{
background-color: red;
//padding: 15px;
}
th
{
background-color: #4caf50;
color: white;
}
p
{
border-left: 6px solid green;
background-color: #f2f2f2;
}
</style>
<body>
<table>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Savings</th>
</tr>
<tr>
<td>Peter</td>
<td>Grifflin</td>
<td>$100</td>
</tr>
<tr>
<td>Lois</td>
<td>Grifflin</td>
<td>$150</td>
</tr>
<tr>
<td>Joe</td>
<td>Swanson</td>
<td>$300</td>
</tr>
<tr>
<td>Calos</td>
<td>Brown</td>
<td>$250</td>
</tr>
</table>
<p>
끄아아앙아앙아아앙</br>
넘나 어려운것!!</br>
자소서 쓰기 시러양!!!!!!
</p>
</body>
</html>