Is it possible to add borders in the color 'info' to the last column in a table? I'm struggling with this. Can anyone provide assistance?
Does Bootstrap have the capability to support this design element?
This is what I have tried so far:
<style>
.admin td {
border-left: 1px solid blue;
border-right: 1px solid blue;
}
.admin td:last-child {
border-bottom: 1px solid blue;
}
</style>
I added the class "admin" to td but unfortunately, it didn't work as expected.