I am trying to get curved corners on a table, however nothing is happening when I add border-radius. I've tried adding !important but it didn't help.
.table {
border: 3px solid #d8d8d8;
border-radius: 10px;
}
Thanks if someone can fix it
I am trying to get curved corners on a table, however nothing is happening when I add border-radius. I've tried adding !important but it didn't help.
.table {
border: 3px solid #d8d8d8;
border-radius: 10px;
}
Thanks if someone can fix it
You can add an div around with class panel
.
<div class="panel panel-default">
<table class="table table-bordered">
</table>
</div>
This is the solution
HTML :
<table class="table">
<tr>
<td>i am a good guy you think ? am i.....</td>
</tr>
</table>
CSS :
.table{
border: 3px solid #d8d8d8;
border-radius: 10px;
}