After following the example from Bootstrap's site, I noticed that when adding the class table to my table tag, it changes the appearance. However, upon adding the table-hover class, there is no noticeable difference in the look and feel. Both lines of code below result in the same display (without row highlighting on hover):
<table class="table table-hover">
<table class="table">
What could be causing this discrepancy?
Despite checking for errors in the console and confirming that it functions correctly on the referenced page, I am unable to find relevant information through a Google search. My implementation includes the minified files (four CSS files, one JS file, and Tether).