Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- td
- Strong
- React강의
- ul
- 배열
- tr
- thead
- form
- tbody
- 표
- html
- 패스트캠퍼스
- 프론트엔드강의
- 국비지원교육
- 프론트엔드
- CSS3
- javascript
- th
- K디지털기초역량훈련
- å
- 내일배움카드
- React & Redux로 시작하는 웹 프로그래밍
- li
- OL
- img
- figcaption
- dd
- css
- let
- table
Archives
- Today
- Total
web study
행병합 rowspan 본문
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>행 병합 rowspan</title>
</head>
<body>
<h1>행 병합 rowspan</h1>
<table border="1">
<thead>
<tr>
<th></th>
<th>넷플릭스</th>
<th>티빙</th>
<th>apple TV</th>
</tr>
</thead>
<tbody>
<tr>
<th>6pm - 7pm</th>
<td rowspan="2">영화</td>
<td>코미디</td>
<td rowspan="3">뉴스</td>
</tr>
<tr>
<th>7pm - 8pm</th>
<td rowspan="2">스포츠</td>
</tr>
<tr>
<th>8pm - 9pm</th>
<td>다큐멘터리</td>
</tr>
</tbody>
</table>
</body>
</html>
행 병합 rowspan
넷플릭스 | 티빙 | apple TV | |
---|---|---|---|
6pm - 7pm | 영화 | 코미디 | 뉴스 |
7pm - 8pm | 스포츠 | ||
8pm - 9pm | 다큐멘터리 |