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

잔글 (로봇: 자동으로 텍스트 교체 (-http://jmnote.com/html5/ +http://zetawiki.com/ex/html5/))
21번째 줄: 21번째 줄:
</table>
</table>
</source>
</source>
*http://jmnote.com/html5/table-caption.php
*http://zetawiki.com/ex/html5/table-caption.php


==같이 보기==
==같이 보기==

2015년 7월 18일 (토) 22:32 판

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

1 예시

<style type="text/css">  
table { border-collapse: collapse; }  
th, td { border: 1px solid black; }
</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 }}