더북(TheBook)

다음 코드는 col 태그와 colgroup 태그로 열을 그룹 지어서 1열의 너비를 80px, 2열과 3열의 너비를 150px, 4열의 너비를 100px로 지정합니다.

03/07/colgroup.html

<table>
 <col style="width:80px">
 <colgroup span="2" style="width:150px"></colgroup> 
 <col style="width:100px">
  <tr>
    <th>번호</th>
    <th>상품명</th>
    <th>수량</th>
    <th>가격</th>
  </tr>
  (중략)
</table>

그림 3-37 실행결과

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.