Here is the layout I am working with:
<ul class="all-content white-bg">
<row>
<div class="col-md-3">
<!-- Content -->
<div class="content white-bg fullscreen clearfix">
<h3 class="cardTitle text-center">How-to: NAVBAR</h3>
<div class="row">
<div class="col-md-6">
<iframe src="/nav_bar.htm">
</iframe>
</div>
<div class="col-md-6">
<figure>
<figcaption></figcaption>
<pre>
<code>
</code>
</pre>
</figure>
</div>
</div>
</div>
<div class="card" id="1">
<div class="card-front">
<div class="card-body">
<h5 class="card-title">NAVBAR</h5>
<p class="card-text"></p>
<button type="button"><a href="#">Go</a></button>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card" id="2">
<div class="card-front">
<div class="card-body">
<h5 class="card-title">JUMBOTRON</h5>
<p class="card-text"></p>
<button type="button"><a href="#">Go</a></button>
</div>
</div>
</div>
</div>
I have a total of 24 cards. My goal is to be able to click on each card and reveal the div with the class "content white-bg full screen". However, despite trying various methods like using absolute and relative positioning, displaying as a table, setting minimum width to 100%, utilizing viewport width at 100%, moving the div in different places, nothing seems to be effective.