My CSS skills are not very advanced. I have been using MDBootstrap for most of the styling on my project, but I am not a fan of its table styling. I would prefer to use the table CSS class from regular Bootstrap instead of MDB. I have both dependencies included in my template file.
<link rel="stylesheet" type="text/css" th:href="@{/webjars/bootstrap/css/bootstrap.min.css}"/>
<link rel="stylesheet" type="text/css" th:href="@{/webjars/github-com-mdbootstrap-mdb-ui-kit/mdb.min.css}"/>
...
<table class="table table-hover">
...
</table>
...
The table in my project currently uses the table class from MDB. Is there a way for me to specify that I want to use
<table class="table ...">
from standard Bootstrap instead?