◄ Back

How to make elements fixed on the screen

If you want something to always float on the screen, not affected by other elements, you can achieve this using CSS:

.element{
   position: fixed,
}

This way, you can set an element to be fixed on the screen.

Other Posts