how to remove the top border from table react bootstrap

Solutions on MaxInterview for how to remove the top border from table react bootstrap by the best coders in the world

showing results for - "how to remove the top border from table react bootstrap"
Noemi
29 Sep 2020
1.react-bs-container-body tr {
2  border-top-style: hidden !important;
3}
4
5.react-bs-container-header tr {
6  border-bottom-style: hidden !important;
7}
8