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 |
Tags
- 프론트엔드스쿨
- 리액트
- STYLE
- Project
- http
- 선택자
- HTML
- object
- CSS
- array
- LIKELION
- function
- false
- 변수
- boolean
- True
- API
- javascript
- 조건문
- 멋쟁이사자처럼
- Inline
- position
- display
- ubuntu
- block
- js
- 선언
- terminal
- Absolute
- react
Archives
- Today
- Total
Jeden Tag, aufrichtig und lustig.
html 11. table 본문
table
테이블은 항상 <table> 태그로 감싸져 있다.
<table>
<thead>
<tr>
<th colspan="2">
<h1>Milk Festival Schedule</h1>
</th>
</tr>
<tr>
<th>
<h2>Time</h2>
</th>
<th>
<h2>Event</h2>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="left>
<h3>12:00 pm </h3>
</td>
<td>
<h3>welcome</h3>
</td>
</tr>
</tbody>
</table>
테이블 병합
colspan (행 병합) / rowspan (열 병합) 속성 활용
Milk Festival Schedule | |
Time | Event |
12:00 pm | welcome |
더보기
*
thead : table head
tbody : table body
tfoot : table footer
tr : table row
td : table data
th : table heading ( 가운데 정렬 & bold효과)
colspan : 열넓이
rowspan : 행넓이
'HTML' 카테고리의 다른 글
html 12. form (0) | 2022.06.28 |
---|---|
html 10. comment (0) | 2022.05.05 |
html 9. 들여쓰기 (0) | 2022.05.05 |
html 8. 동영상 삽입 (0) | 2022.03.28 |
html 7. 웹 호스팅 (0) | 2022.03.23 |