본문 바로가기
IT 정보기술, 전자, 통신/HTML_CSS

HTML과 CSS를 활용한 단순 표 작성

by 팁텍북 2017. 9. 28.

HTML과 CSS를 활용한 단순 표 작성



<!DOCTYPE html>
<html>
<head>
<style>
th{
  background-color: pink;
}
table, td, th {
border: 0px solid #B9A5A5;
text-align: center;
color: red;
}

td:nth-child(3),
td:nth-child(5){
background-color: darkblue;
}

</style>
</head>
<body>

<table>
<tr>
<th>구분<br>/시간</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thurday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
</tr>
<tr>
<td>점심</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>


</tr>
<tr>
<td>저녁</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
<td>Chicken</td>
</tr>
</table>

</body>
</html>


댓글