정의 및 사용
span 속성은 열 수를 정의 <col>/<colgroup> 요소에 걸쳐해야합니다.
적용
span 속성은 다음과 같은 요소에 사용할 수 있습니다 :
집단 | 속성 |
---|---|
<col> | span |
<colgroup> | span |
예
골 예
여기서, 첫 번째 두 열은 적색의 배경색을 가져야한다 :
<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>
»그것을 자신을 시도 Colgroup 예
은 USING 첫 번째 두 열의 배경색 설정 <colgroup> 스팬 특성 :
<table>
<colgroup span="2" style="background:red"></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>
<tr>
<td>5869207</td>
<td>My first CSS</td>
<td>$49</td>
</tr>
</table>
»그것을 자신을 시도 브라우저 지원
span
속성은 각 요소에 대한 다음과 같은 브라우저 지원을하고있다 :
요소 | |||||
---|---|---|---|---|---|
col | 예 | 예 | 예 | 예 | 예 |
colgroup | 예 | 예 | 예 | 예 | 예 |