Notice
Recent Posts
Recent Comments
Link
«   2024/10   »
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
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter30 : table 본문

WEB.CSS

chapter30 : table

GAWON 2023. 5. 18. 10:33
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
table {
border-collapse: collapse; /* single-line표시*/
width: 400px;
margin: auto;
}

th, td {
padding: 40px 0;
font-size: 20px;
border: 1px solid black;
}

th {
background-color: gray;
}

td {
text-align: center;
}
</style>
</head>
<body>
<table border="1">
<tr>
<th>이름</th>
<th>나이</th>
</tr>
<tr>
<th>김씨</th>
<th>10</th>
</tr>
<tr>
<th>이씨</th>
<th>20</th>
</tr>
<tr>
<th>박씨</th>
<th>30</th>
</tr>

```
</table>

```

</body>
</html>

'WEB.CSS' 카테고리의 다른 글

chapter32 : form  (0) 2023.05.19
chapter31 : form  (0) 2023.05.19
chapter29 : pseudo_class  (0) 2023.05.18
chapter28 : pseudo_class  (0) 2023.05.18
chapter27 : menu  (0) 2023.05.18