Currently, I am in the process of learning how to use Bootstrap 4.
My goal is to have a div positioned on top of the grid, with content underneath it. I want this div to be aligned to the right side of the grid (not the screen), have a width of 200px, cover 100% height, and be fixed.
I have tried multiple solutions using markup and CSS, but so far, I can only manage to position it on the right side of the user's screen.
As an additional challenge, my plan is to incorporate jQuery to make the div slide in and out. I believe I can figure that part out myself once I solve the positioning issue.
Currently, I am experimenting with a simple bootstrap grid setup:
<div class="container">
<div class="row">
<div class="col-12">
Header row
</div>
<div class="col-12">
Middle row
</div>
<div class="col-12">
Bottom row
</div>
</div>
</div>
To further illustrate my desired outcome, here is a wireframe: https://ibb.co/zFxJJZT