code
Código CSS completo
.styled-table {
border-collapse: collapse;
width: 100%;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.styled-table th {
background: linear-gradient(135deg, #576CBC, #3949AB);
color: white;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 16px;
}
.styled-table td {
padding: 16px;
transition: all 0.2s ease;
}
.styled-table tbody tr {
border-bottom: 1px solid #e0e0e0;
transition: all 0.3s ease;
}
.styled-table tbody tr:last-child {
border-bottom: none;
}
.styled-table tbody tr:nth-child(even) {
background-color: rgba(87,108,188,0.05);
}
.styled-table tbody tr:hover {
background-color: rgba(87,108,188,0.15);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.styled-table td.highlight {
font-weight: 600;
color: #576CBC;
}
border-collapse: collapse;
width: 100%;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.styled-table th {
background: linear-gradient(135deg, #576CBC, #3949AB);
color: white;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 16px;
}
.styled-table td {
padding: 16px;
transition: all 0.2s ease;
}
.styled-table tbody tr {
border-bottom: 1px solid #e0e0e0;
transition: all 0.3s ease;
}
.styled-table tbody tr:last-child {
border-bottom: none;
}
.styled-table tbody tr:nth-child(even) {
background-color: rgba(87,108,188,0.05);
}
.styled-table tbody tr:hover {
background-color: rgba(87,108,188,0.15);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.styled-table td.highlight {
font-weight: 600;
color: #576CBC;
}
visibility
Resultado visual
| Producto | Precio | Stock | Categoría |
|---|---|---|---|
| Laptop Pro | $999 | 15 | Electrónica |
| Monitor Ultra | $299 | 23 | Electrónica |
| Teclado Mecánico | $79 | 42 | Accesorios |
| Mouse Gaming | $49 | 67 | Accesorios |
lightbulb
Características destacadas
check_circle
Bordes redondeados y sombras suaves
check_circle
Degradado en encabezados
check_circle
Transiciones suaves al interactuar
check_circle
Efecto hover con elevación sutil
check_circle
Celdas destacadas para información importante