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
- React강의
- å
- css
- table
- let
- React & Redux로 시작하는 웹 프로그래밍
- 배열
- javascript
- td
- Strong
- figcaption
- 국비지원교육
- OL
- html
- li
- CSS3
- 내일배움카드
- tr
- tbody
- th
- K디지털기초역량훈련
- img
- thead
- dd
- 패스트캠퍼스
- form
- 표
- 프론트엔드
- 프론트엔드강의
- ul
Archives
- Today
- Total
web study
열병합 colspan 본문
<!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>열 병합 colspan</title>
</head>
<body>
<h1>열 병합 colspan</h1>
<table border="1">
<thead>
<tr>
<th></th>
<th>9am</th>
<th>10am</th>
<th>11am</th>
<th>12am</th>
</tr>
</thead>
<tbody>
<tr>
<th>월요일</th>
<td colspan="2">UI 디자인</td>
<td>html</td>
<td>css</td>
</tr>
<tr>
<th>화요일</th>
<td colspan="3">체육</td>
<td>디자인</td>
</tr>
</tbody>
</table>
</body>
</html>
열 병합 colspan
9am | 10am | 11am | 12am | |
---|---|---|---|---|
월요일 | UI 디자인 | html | css | |
화요일 | 체육 | 디자인 |