오랜만에 유데미 강의를 듣다가 몰랐던 html element들이 나와서 기록.
<tr> : Table Row
<td> : Table Data Cell
<th> : Table Header Cell
<thead> : Table Head
예 1. <tr>, <th>
예 2. <thead>, <tbody>
예 3. <thead>, <tbody>, <tr>, <th>
<table>
<thead>
<tr>
<th rowspan="2">Name</th>
<th rowspan="2">ID</th>
<th colspan="2">Membership Dates</th>
<th rowspan="2">Balance</th>
</tr>
<tr>
<th>Joined</th>
<th>Canceled</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Margaret Nguyen</th>
<td>427311</td>
<td><time datetime="2010-06-03">June 3, 2010</time></td>
<td>n/a</td>
<td>0.00</td>
</tr>
<tr>
<th scope="row">Edvard Galinski</th>
<td>533175</td>
<td><time datetime="2011-01-13">January 13, 2011</time></td>
<td><time datetime="2017-04-08">April 8, 2017</time></td>
<td>37.00</td>
</tr>
<tr>
<th scope="row">Hoshi Nakamura</th>
<td>601942</td>
<td><time datetime="2012-07-23">July 23, 2012</time></td>
<td>n/a</td>
<td>15.00</td>
</tr>
</tbody>
</table>
반응형
출처: MDN
'웹개발 > 혼자하는 개발 공부' 카테고리의 다른 글
[React] route로 페이지 바꿀 때 page top으로 가도록 만드는 법 (0) | 2022.02.17 |
---|---|
유데미 Brad Traversy 의 MERN Stack Front to Back: Rull Stack React, Redux & Node.js (0) | 2022.01.31 |
[github] 깃헙 new branch vs fork (2) | 2021.11.13 |
VSCode extensions 비주얼 스튜디오 코드 익스텐션 추천 (0) | 2021.10.14 |
[github] repository에 node module을 올려버렸을 때 삭제하는 법 (0) | 2021.10.09 |