HTML/요소

표 콘텐츠 - HEAD, TBODY, TFOOT

컴공 윤서혜 학습일기 2021. 1. 5. 14:12

표의 머리글(<thead>), 본문(<tbody>), 바닥글(<tfoot>)을 지정.

  • 기본적으로 테이블의 레이아웃에 영향을 주지 않음.
<table>
        <caption>Fruits</caption>
        <colgroup>
            <col span="2" style="background-color: yellowgreen;">
            <col style="background-color: tomato;">
        </colgroup>
        <thead> <!--머리글-->
            <tr>
                <th>ID</th>
                <th>Name</th>
                <th>Price</th>
            </tr>
        </thead>
        <tbody> <!--본문-->
            <tr>
                <td>F123A</td>
                <td>Apple</td>
                <td>$22</td>
            </tr>
            <tr>
                <td>F098B</td>
                <td>Banana</td>
                <td>$19</td>
            </tr>
        </tbody>
    </table>

'HTML > 요소' 카테고리의 다른 글

양식 - INPUT  (0) 2021.01.05
양식 - FORM  (0) 2021.01.05
표 콘텐츠 - COLGROUP, COL  (0) 2021.01.05
표 콘텐츠 - CAPTION  (0) 2021.01.05
표 콘텐츠 - TD  (0) 2021.01.05