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
Make sure your content is kept in a div, say divfix.
div
Your Code goes here
CSS :
#divfix { bottom: 0; right: 0; position: fixed; z-index: 3000; }
Hope ,It will help you..