728x90
반응형

CSS 23

[CSS] 머티리얼 아이콘 material-icons 구글 웹폰트

■ 머티리얼 아이콘 material-icons 구글에서 제공하는 웹폰트 (아이콘) 모음 ■ 사용법 1. CSS 파일 적용 2. 하기 링크 내 사용할 아이콘 찾기 https://fonts.google.com/icons Material Symbols and Icons - Google Fonts Material Symbols are our newest icons consolidating over 2,500 glyphs in a single font file with a wide range of design variants. fonts.google.com Material Icons Get Material Icons material.io 3. 사용할 아이콘 i 태그 추가 home 4. 페이지 호출 시 정상적으로 ..

CSS 2021.02.09

[CSS] html 테이블 헤더 고정 (table thead 고정) tbody 스크롤(scroll)

table 영역 중 thead 는 고정시키고 tbody 는 특정 크기 이상일 경우 스크롤 할 수 있게 구현 [ HTML ] 이름 부서 직급 직책 생년월일 [ CSS ] /* 스크롤 스타일 정의 */ .table-fixed-header-wrap { position:relative; box-sizing:border-box; padding-top:33px; /* 기준점과 헤더영역 확보 */ width:670px; height:100%; margin:0 auto; /* 디자인에 따라 가로 세로 값 설정 */ } /* 실제 스크롤 영역 설정 */ .table-fixed-header-wrap .fixed-header-scroll { height:566px; overflow-x:hidden; overflow-y:au..

CSS 2020.05.12
728x90
반응형