We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
<colgroup>
<col>
표의 열(column)을 묶는 그룹을 정의한다.
HTML <col> 요소는 표의 열(column)을 나타내며, 열에 속하는 칸에 공통된 의미를 부여할 때 사용합니다.
<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>
.batman { background-color: #d7d9f2; } .flash { background-color: #ffe8d4; } // 생략
The text was updated successfully, but these errors were encountered:
GitBook: [#9] No subject
79911b8
No branches or pull requests
<colgroup>
표의 열(column)을 묶는 그룹을 정의한다.
<col>
HTML
<col>
요소는 표의 열(column)을 나타내며, 열에 속하는 칸에 공통된 의미를 부여할 때 사용합니다.예
The text was updated successfully, but these errors were encountered: