mr01-table-plugin
Version:
The Table Plugin Modulable is a versatile React component designed for displaying and managing tabular data. It comes with features such as sorting, searching, pagination, and customizable entries per page. This README will guide you through the installat
33 lines (27 loc) • 624 B
CSS
/* Ajoutez ces styles pour transformer la table en un tableau avec des lignes en abcisse et en ordonnée */
.table {
display: table;
width: 100%;
border-collapse: collapse;
}
.table thead {
background-color: #2980b9;
color: #fff;
}
.table th,
.table td {
border: 1px solid #3498db;
padding: 8px;
text-align: left;
}
/* Ajoutez ces styles pour mettre en forme l'entête et les lignes en bleu */
.table th {
background-color: #3498db;
}
.table tbody tr:nth-child(odd) {
background-color: #f8f9fa;
}
.table tbody tr:hover {
background-color: #3498db;
color: #fff;
}