Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

개발이야기

[html] table의 tbody, thead, tfoot 본문

html & css

[html] table의 tbody, thead, tfoot

re2592 2020. 2. 12. 22:43

html 테이블 작성시

 

<table>

 <thead></thead>

 <tfoot></tfoot>

 <tbody></tbody>

</table>

 

순서로 작성하는 것이 성능에 유리하다.

 

사람이 읽을땐 thead, tbody, tfoot 이 직관적이지만, 브라우저는 thead와 tfoot을 먼저 해석하기 때문에 성능에 유리하기 때문이다.

'html & css' 카테고리의 다른 글

[CSS] 태그 선택자  (0) 2020.02.22
[CSS] html파일에서 css 파일 포함시키기  (0) 2020.02.19
[html] img 태그 및 map 태그  (0) 2020.02.12
[html] 문자셋 지정 관련  (0) 2020.02.11
[html] title과 meta 태그  (0) 2020.02.11
Comments