Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTML <colgroup>, <col> tag #9

Open
yejineee opened this issue May 6, 2021 · 0 comments
Open

HTML <colgroup>, <col> tag #9

yejineee opened this issue May 6, 2021 · 0 comments

Comments

@yejineee
Copy link
Owner

yejineee commented May 6, 2021

<colgroup>

표의 열(column)을 묶는 그룹을 정의한다.

<col>

HTML <col> 요소는 표의 열(column)을 나타내며, 열에 속하는 칸에 공통된 의미를 부여할 때 사용합니다.

스크린샷 2021-05-06 오후 6 38 47

<table>
    <caption>Superheros and sidekicks</caption>
    <colgroup>
        <col>
        <col span="2" class="batman">
        <col span="2" class="flash">
    </colgroup>
    <tr>
        <td> </td>
        <th scope="col">Batman</th>
        <th scope="col">Robin</th>
        <th scope="col">The Flash</th>
        <th scope="col">Kid Flash</th>
    </tr>
    <tr>
        <th scope="row">Skill</th>
        <td>Smarts</td>
        <td>Dex, acrobat</td>
        <td>Super speed</td>
        <td>Super speed</td>
    </tr>
</table>
  • css 축약
.batman {
    background-color: #d7d9f2;
}

.flash {
    background-color: #ffe8d4;
}
// 생략
gitbook-com bot pushed a commit that referenced this issue Feb 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant