I'm currently working with Bootstrap 5.0 CSS and attempting to create a table with customized cell colors using some of my own CSS styles. The color
property seems to be working correctly, but I'm running into an issue with Bootstrap not recognizing the background
property when I try to change the background color. Is there a solution to this problem?
Here is a snippet of my code:
td.colorfy {
background: blue;
color: white;
}
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="45272a2a31363137243505706b756b75682720312477">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet"/>
<table class="table table-bordered">
<tr>
<td class="colorfy">cell</td>
<td>cell</td>
<td>cell</td>
</tr>
</table>