ejercicio 6: tabla dinamica de empleados

This commit is contained in:
2026-05-28 13:46:22 -03:00
parent 6b28028009
commit f9f562bf1c
3 changed files with 89 additions and 2 deletions

View File

@@ -1,2 +1,28 @@
/* Agregar el código CSS necesario para el ejercicio */
body {
font-family: Arial, sans-serif;
margin: 20px;
}
table {
border-collapse: collapse;
width: 100%;
max-width: 600px;
}
th,
td {
border: 1px solid #ccc;
padding: 8px 12px;
text-align: left;
}
th {
background-color: #f4f4f4;
}
tfoot td {
background-color: #fafafa;
}