html table 열(column)
테이블 셀의 열(column)
<table>
    <colgroup>
        <col style="background-color: silver;">
        <col style="background-color: gold;">
    </colgroup>
    <tr>
        <th>메뉴</th>
        <th>가격</th>
    </tr>        
    <tr>
        <td>라면</td>
        <td>5,000</td>
    </tr>
    <tr>
        <td>김밥</td>
        <td>4,000</td>
    </tr>
</table>
실제 적용된 모습 CSS로 각 셀에 padding 속성으로 안쪽 여백을 지정했지만, 복잡성을 줄이기 위해서 데모 코드 설명에서는 생략했습니다.
<table>
    <colgroup>
        <col span="2" style="background-color: silver;"> <!-- 첫 번째와 두 번째 열에 같은 스타일(배경색)을 적용 -->
        <col style="background-color: gold;">
    </colgroup>
    <tr>
        <th>항목</th>
        <th>가격</th>
        <th>재고</th>
    </tr>
    <tr>
        <td>라면</td>
        <td>5,000</td>
        <td>50</td>
    </tr>
    <tr>
        <td>김밥</td>
        <td>4,000</td>
        <td>30</td>
    </tr>
</table>
실제 적용된 모습 CSS로 각 셀에 padding 속성으로 안쪽 여백을 지정했지만, 복잡성을 줄이기 위해서 데모 코드 설명에서는 생략했습니다.