DEV/css

CSS 심플한 Table 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;
}