ฉันได้ค้นหาและค้นหา แต่ไม่พบวิธีแก้ปัญหาสำหรับความต้องการของฉัน
ฉันมีตาราง HTML แบบธรรมดา ฉันต้องการมุมรอบสำหรับมันโดยไม่ต้องใช้ภาพหรือ JS เช่นบริสุทธิ์CSS เท่านั้น แบบนี้:
มุมโค้งมนสำหรับเซลล์มุมและ1px
ขอบหนาสำหรับเซลล์
จนถึงตอนนี้ฉันมีสิ่งนี้:
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
}
แต่นั่นทำให้ฉันไม่มีขอบเขตสำหรับเซลล์ ถ้าฉันเพิ่มเส้นขอบมันจะไม่ถูกปัด!
วิธีแก้ปัญหาใด ๆ