I have a page and the page is split in two. Part of the page is child1, part is child 2.
Hierarchy
Parent
Child1
Child2
Below are the css included in the page
Child1 -> z-index: 1
Child2 -> z-index: 2
I want to give a backdrop to the entire page when a button in child1 is clicked. Css is as follows
.backdrop {
position: fixed;
background-color: rgba(16,19,22,.6);
z-index: 5;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
But this only takes up the child1 component. I want it to cover the entire page.