Bir table da border radius kullanıyorum ancak alt kısımda köşeli olmamasına rağmen üst taraflarda arkaplan köşeli çıkıyor.
Çözümü nedir?

.table {
background-color: #292e38;
border-radius: 10px;
width: 100% !important;
} 4
●104
.table {
background-color: #292e38;
border-radius: 10px !important;
width: 100% !important;
}
.table-responsive.brands-table .table {
margin-bottom: 1rem;
}hem böyle.table {
background-color: #292e38;
border-radius: 10px;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
width: 100% !important;
}
.table-responsive.brands-table .table {
margin-bottom: 1rem;
}hem de böyle denedim ancak yine olmadı.