Although inline css
is not recommended but I just want to test it in one special case and hence want to override the default border color of a bootstrap table
to white. But the following does not work. It still displays the default border color of a bootstrap table. How can it be achieved or what are other alternatives without using javascript or without messing around with default bootstrap css?
<table class="table table-bordered" style="border-color:white;">
...
...
</table>