[CSS] table header ์๋จ์ ๊ณ ์ ์ํค๊ธฐ
๊ฐ ์คํฌ๋กค์ ๋ด๋ ค๋ ํ์ด์ง ์ต์๋จ์ ๊ณ ์ ๋๋๋ก ํ๋ ค๋ฉด CSS์ position: sticky ์์ฑ์ ์ฌ์ฉํ ์ ์์ต๋๋ค. 1. ์ ๊ฐ์ธ๋ ์ ๊ธธ์ด๋ฅผ ์ค์ ํ๋ค.๋๋ max-height:80vh๋ก ํ๋ฉด์ ๊ธธ์ด์ ๋ฐ๋ผ ์ ๋์ ์ผ๋ก ๋ณํ๊ฒ ๋์ด๋ฅผ ์ค์ ํด์ฃผ์๋ค.2. thead th์ css ์ค์ ์ ํด์ฃผ์๋ค.$(document).ready(function(){ const $tableHead = $('thead th'); $tableHead.css({ 'position': 'sticky', 'top': '0', 'z-index': '2', 'background-color': '#f2f2f2' }..