HTML : 테이블의 전체 열에 스타일 적용
2289 단어 webdevtutorialcodenewbiehtml
<table width="100%">
<colgroup>
<col style="width:40%;" />
<col style="width:60%;" />
</colgroup>
<thead>
<tr>
<td>
Column 1
<!--This column will have 40% width-->
</td>
<td>
Column 2
<!--This column will have 60% width-->
</td>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
</tbody>
</table>
Note: The
<colgroup>
tag must be a child of a<table>
element, after any<caption>
elements and before any<thead>
,<tbody>
,<tfoot>
, and<tr>
elements.
여기에서 서식 지정을 위해 테이블에서 하나 이상의 열 그룹을 지정하는
<colgroup>
태그를 사용했음을 알 수 있습니다. <colgroup>
태그는 셀마다, 행마다 스타일을 반복하는 대신 전체 열에 스타일을 적용하는 데 유용합니다.모든 것을 말하면서 계속 배우는 것이 좋습니다!
이 기사를 읽어 주셔서 감사합니다. 와 에서 언제든지 저와 연결해 주세요.
Reference
이 문제에 관하여(HTML : 테이블의 전체 열에 스타일 적용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rajeshkumaryadavdotcom/html-applying-styles-to-entire-columns-of-table-8m4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)