On my webpage, I have a straightforward Bootstrap Jumbotron displayed prominently:
<div class="jumbotron">
<div class="container">
<h1>Welcome to My Wonderful Site</h1>
<p>There's some information here</p>
<p><a href="somePage'" class="btn btn-primary btn-lg" role="button">Click Me!</a></p>
</div>
</div>
I want to enhance this Jumbotron by embedding a background element, like a map (perhaps Google Maps). How can I position the map inside the Jumbotron but ensure it remains behind all other content?
It seems like using relative positions may be the solution, but CSS isn't really my area of expertise.