Answers for "css rounded table borders"

CSS
1

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; }
Posted by: Guest on July-13-2021
11

table border css

table, th, td {
  border: 1px solid black;
}
Posted by: Guest on April-14-2020

Browse Popular Code Answers by Language