How do I make a small overlay in the bottom right corner with z-index 5?

I need a small overlay to display in the bottom right corner of the page

I cannot get the right position

div#overlay {
z-index: 5;
float: right;
}

      

+2


source to share


1 answer


div#overlay { position:absolute; bottom:0; right:0; }

      



Something like that? z-index is useless if the element does not have an absolute / fixed / relative position.

+6


source







All Articles