“CSS Table Row Border Radius” Kode Jawaban

CSS Table Row Border Radius

table { border-collapse: separate; }
td { border: solid 1px #000; }
tr:first-child td:first-child { border-top-left-radius: 10px; }
tr:first-child td:last-child { border-top-right-radius: 10px; }
tr:last-child td:first-child { border-bottom-left-radius: 10px; }
tr:last-child td:last-child { border-bottom-right-radius: 10px; }
DevPedrada

Radius perbatasan meja

thead th:first-child{border-top-left-radius: 15px;}
thead th:last-child{border-top-right-radius: 15px;}
tbody tr:last-child>td:first-child{border-bottom-left-radius: 15px;}
tbody tr:last-child>td:last-child{border-bottom-right-radius: 15px;}
Arjun

Jawaban yang mirip dengan “CSS Table Row Border Radius”

Pertanyaan yang mirip dengan “CSS Table Row Border Radius”

Lebih banyak jawaban terkait untuk “CSS Table Row Border Radius” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya