Ich habe gesucht und gesucht, konnte aber keine Lösung für meine Anforderung finden.
Ich habe eine einfache alte HTML-Tabelle. Ich möchte runde Ecken dafür, ohne Bilder oder JS zu verwenden, dh nur reines CSS . So was:
Abgerundete Ecken für Eckzellen und 1px
dicker Rand für die Zellen.
Bisher habe ich Folgendes:
table {
-moz-border-radius: 5px !important;
border-collapse: collapse !important;
border: none !important;
}
table th,
table td {
border: none !important
}
table th:first-child {
-moz-border-radius: 5px 0 0 0 !important;
}
table th:last-child {
-moz-border-radius: 0 5px 0 0 !important;
}
table tr:last-child td:first-child {
-moz-border-radius: 0 0 0 5px !important;
}
table tr:last-child td:last-child {
-moz-border-radius: 0 0 5px 0 !important;
}
table tr:hover td {
background-color: #ddd !important
}
Aber das lässt mich ohne Grenzen für die Zellen. Wenn ich Rahmen hinzufüge, werden diese nicht gerundet!
Irgendwelche Lösungen?