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
Try this one:
p.pos_fixed { position:fixed; top:30px; right:5px; }