colspan 속성
- <td>, <th>에서 주로 사용
- 데이터가 여러 열에 걸쳐 있을 때 사용
- 범위에 걸쳐 있는 열의 개수를 입력받음
<td colspan="열 개수">코드</td>
<table border="1">
<tr>
<th scope="col">coffee</th>
<th scope="col">tea</th>
<th scope="col">latte</th>
</tr>
<tr>
<td>Americano</td>
<td colspan="2">herb tea</td>
<td>strawberry latte</td>
</tr>
</table>
colspan 속성
- <td>, <th>에서 주로 사용
- 데이터가 여러 행에 걸쳐 있을 때 사용
- 범위에 걸쳐 있는 행의 개수를 입력받음
<td colspan=" 개수">코드</td>
<table border="1">
<tr>
<th scope="col">coffee</th>
<th scope="col">tea</th>
<th scope="col">latte</th>
</tr>
<tr>
<td>Americano</td>
<td rowspan="2">Herb tea</td>
<td>Strawberry latte</td>
</tr>
<tr>
<td>Cold brew</td>
<td>Matcha latte</td>
</tr>
</table>
'Front-end > HTML' 카테고리의 다른 글
[HTML] 사용자 입력 폼 태그 - <form> (0) | 2023.09.06 |
---|---|
[HTML] 테이블 태그(3) - 테이블 테두리 추가 (0) | 2023.09.06 |
[HTML] 테이블 태그(1) - <table>, <tr>, <td>, <th>, <tbody>, <thead>, <tfoot> (0) | 2023.09.06 |
[HTML] 비디오 태그 - <video> (0) | 2023.09.05 |
[HTML] 영역 정의 태그 - <div> (0) | 2023.09.05 |