I\'m looking for a trick to create a \"fixed\" HTML object on the browser screen using CSS. I want it to stay in the same position all the time, even when the user scrolls t
In order to keep floating text in the same location over an image when changing browser zoom, I used this CSS:
position: absolute; margin-top: -18%
I think the % instead of fixed pixels is what does it. Cheers!