본문 바로가기
HTML

마크업 유효성 검사 table col 태그 width 설정

by @hohoya33 2017년 06월 13일

마크업 Validation 체크 오류

The width attribute on the col element is obsolete. Use CSS instead.

 

col 태그에 style을 따로 입히거나 css class를 이용하여 width값을 추가하면 해결됩니다.

<colgroup>
  <col width="25%">
  <col width="25%">
  <col width="25%">
  <col width="25%">
</colgroup>

<colgroup>
  <col style="width:25%">
  <col style="width:25%">
  <col class="small-width">
  <col class="small-width">
</colgroup>

 

개의 댓글