HTML 테이블 틀 고정

210.178.131.103 (토론)님의 2019년 12월 8일 (일) 19:21 판
HTML 테이블 틀 고정
HTML 테이블 첫 행 고정

예시

<source lang='html' highlight='8-9'> <style> body { margin:0; } table {

 margin: 32px 0 0;
 border-collapse:collapse;

} thead {

 position: fixed;
 top: 0;
 background: #cdefff;

} th {

 border:1px solid silver;
 height: 30px;

}

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