I want to display an alert
to the user in a visually appealing way. To achieve this, I am utilizing Bootstrap's alert class. Here is how I am showing the user a div
:
<div class="alert alert-warning alert-dismissible" role="alert">
Some text
</div>
Currently, this code displays a simple div
. However, I am looking to create a darkened overlay on everything else except this particular div
, similar to how modals work in Bootstrap. How can I accomplish this?