“CSS Table Row Rand Radius” Code-Antworten

CSS Table Row Rand 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

Tischrandradius

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

Ähnliche Antworten wie “CSS Table Row Rand Radius”

Fragen ähnlich wie “CSS Table Row Rand Radius”

Weitere verwandte Antworten zu “CSS Table Row Rand Radius” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen