최신 웹 개발 튜토리얼
 

HTML <col> span Attribute

<HTML <col> 태그

여기서, 첫 번째 두 열은 적색의 배경색을 가져야한다 :

<table>
  <colgroup>
    <col span="2" style="background-color:red">
    <col style="background-color:yellow">
  </colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
</table>
»그것을 자신을 시도

정의 및 사용

span 속성은 열 수를 정의 <col> 요소에 걸쳐해야합니다.


브라우저 지원

속성
span

HTML 4.01과 HTML5의 차이점

없음.


통사론

<col span="number">

속성 값

기술
number 열 수 설정 <col> 요소에 걸쳐해야을

<HTML <col> 태그