Looking for advice on stacking containers in Bootstrap.
I'm trying to create a page that functions like a PowerPoint presentation, where clicking on an image hides the current container and reveals the next one. This requires the containers/slides to stack on top of each other in order. I want to have 10 containers/slides ready to go when the page loads.
Currently, I've been using the "tab" feature in Bootstrap as a workaround.
Any suggestions for a better solution?
<div class="tab-content">
<div class="tab-pane active">
......
</div>
</div>
The issue with my current setup is that it still displays tab buttons. I'm aiming for the stacked containers to appear one at a time when clicked on.