Skip to content

Instantly share code, notes, and snippets.

@farhang
Last active April 12, 2019 18:30
Show Gist options
  • Select an option

  • Save farhang/99a9128fbd3c5a9e9ea5c1b054b59d94 to your computer and use it in GitHub Desktop.

Select an option

Save farhang/99a9128fbd3c5a9e9ea5c1b054b59d94 to your computer and use it in GitHub Desktop.
Bootstrap rounded corner border
.table-rounded thead th {
border: none;
}
.table-rounded thead th:first-child {
border-radius: $border-radius 0 0 0;
}
.table-rounded thead th:last-child {
border-radius: 0 $border-radius 0 0;
}
.table-rounded tbody td {
border: none;
}
.table-rounded tbody tr:last-child td:first-child {
border-radius: 0 0 0 $border-radius;
}
.table-rounded tbody tr:last-child td:last-child {
border-radius: 0 0 $border-radius 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment