Having experience in mobile programming, I am accustomed to creating a parent hidden view and positioning subviews inside it. Now, I am trying to replicate the same functionality using HTML/CSS/Bootstrap.
Let's say I have already laid out a cover background photo:
<div class="openBackContainer">
<img src="images/Back.png" alt="l" />
</div>
Now, I want to add a hidden square container in the center of this cover, which will contain a title and a button for uploading photos:
https://i.sstatic.net/TedMN.png
Essentially, I aim to insert a "virtual/hidden" container into the middle of the cover image and then align a title and button inside it. (Later on, this button will utilize a Bootstrap class)
What would be a best practice for creating this container within a cover photo?