-
CSS 심플한 Table CSS 예시DEV/css 2023. 11. 16. 09:52
CSS 다음과 같이 적용
/* TABLE */ .custom-table { border-collapse: collapse; /* margin: 25px 0; */ /* font-size: 0.9em; */ font-family: sans-serif; min-width: 100%; width: 100%; box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); } .custom-table thead tr { background-color: #009879; color: #ffffff; text-align: left; } .custom-table th, .custom-table td { font-size: 12px; padding: 2px 8px; text-align: center; } .custom-table tbody tr { border-bottom: 1px solid #dddddd; } .custom-table tbody tr:nth-of-type(even) { background-color: #f3f3f3; } .custom-table tbody tr:last-of-type { border-bottom: 2px solid #009879; } .custom-table tbody tr.active-row { font-weight: bold; color: #009879; }
'DEV > css' 카테고리의 다른 글
CSS Scroll 제거 (0) 2024.06.21 CSS 웹 페이지 스크롤 디자인 수정 (0) 2023.11.16 CSS 이미지 비율 맞추기, 이미지 사이즈 맞추기 (object-fit) (0) 2022.12.18