forked from marquez.juan/clase-10-ejercicios-de-repaso
29 lines
372 B
CSS
29 lines
372 B
CSS
/* 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;
|
|
}
|
|
|