I'm encountering an issue with bootstrap.min.css and tabs. Using:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
The page format looks correct, but switching tabs doesn't display the contents of the other tabs (they only show up when I go back to the first tab):
https://i.sstatic.net/U3sRY.png
Choose "Menu 1":
https://i.sstatic.net/AbPTr.png
When I try:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.2/css/bootstrap.min.css" />
The formatting isn't ideal:
https://i.sstatic.net/0ntik.png
However, the contents of the other tabs are displayed:
https://i.sstatic.net/Sh1z4.png
Is there a bootstrap CSS CDN that provides both good formatting and functional tabs?
Here is the complete HTML:
<!DOCTYPE html>
<html lang="en>
<head>
...
</head>
<body>
<div id="campDisplay" class="container-fluid" style="background-repeat: repeat; background-image: url('images/body-bg.jpg');">
...
</div> <!-- /container -->
<script src="resources/bootstrap-3.3.7-dist/js/bootstrap-tooltip.js"></script>
<script src="resources/bootstrap-3.3.7-dist/js/bootstrap-popover.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="js/camp.js"></script>
</body>
</html>