"HTML 테이블 caption 태그"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
26번째 줄: 26번째 줄:
*[[HTML table 태그]]
*[[HTML table 태그]]


==참고 자료==
==참고==
*http://www.w3schools.com/tags/tag_caption.asp
*http://www.w3schools.com/tags/tag_caption.asp


[[분류: HTML table]]
[[분류: HTML table]]

2017년 6월 27일 (화) 04:04 판

HTML caption tag
HTML caption 태그, HTML 테이블 캡션, 테이블 제목

1 예시

<style>  
table { border-collapse: collapse; }  
th, td { border: 1px solid black; text-align: right; }
</style>

<table>
  <caption>월별 저축액</caption>
  <tr>
    <th></th>
    <th>저축금액</th>
  </tr>
  <tr>
    <td>1월</td>
    <td>100원</td>
  </tr>
</table>

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}