Trying to achieve a specific design using Bootstrap 5.3.
https://i.sstatic.net/STifm.jpg
This design should be placed over the showcase, with the following code for the showcase displayed below:
<div class="showcase d-flex flex-column">
<div class="container p-4">
<div class="row showcase-row mt-5 gap-lg-0 gap-5">
<div class="col-lg-4 col-12 showcase-item">
<h4>BMW 420i</h4>
<h5>M Sport</h5>
<img src="/app/static/img/togg art.png" alt="">
</div>
<div class="col-lg-4 col-12 showcase-item">
<h4>Mercedes-Benz GLB</h4>
<h5>200 AMG</h5>
<img src="/app/static/img/8.png" alt="">
</div>
<div class="col-lg-4 col-12 showcase-item">
<h4>Audi E-Tron GT</h4>
<h5>GT Quattro</h5>
<img src="/app/static/img/9.png" alt="">
</div>
<div class="col-lg-4 col-12 showcase-item">
<h4>Ferrari F8</h4>
<h5>Tributo</h5>
<img src="/app/static/img/4.png" alt="">
</div>
<div class="col-lg-4 col-12 showcase-item">
<h4>Lamborghini Aventador</h4>
<h5>LP750-4</h5>
<img src="/app/static/img/5.png" alt="">
</div>
<div class="col-lg-4 col-12 showcase-item">
<h4>Aston Martin Vantage</h4>
<h5>V8 Vantage Roadster</h5>
<img src="/app/static/img/6.png" alt="">
</div>
</div>
</div>
</div>
Edit:
The solution I currently have is as follows:
<span class="text-uppercase fw-bold position-absolute" style="font-size: 210px; opacity: 0.1;">owcase</span>
<div class="showcase container p-4 d-flex flex-column" style="margin-top: 100px;">
<span class="fs-3 fw-bold">Showcase</span>
<span class="fs-5 fw-bold" style="opacity: 0.4;">Ads</span>
</div>
If you have a better way to achieve this, feel free to share!