css draw elements on top code example
Example: css make div on top of everything
.floatAboveEverything {
z-index: 1000; // or any value higher than your other elements
position: absolute;
}
.floatAboveEverything {
z-index: 1000; // or any value higher than your other elements
position: absolute;
}