Anyone knows how to design floating box (or text) that moves with you as you're scrolling down and up the page? So it will not be static box. For example, if box is at the top of the page, it would have to move with the page as I scroll down to the bottom so I can see it at all times no matter where I am on the page. It could be either that the box moves with the page or that box stays stationary while page moves behind it. Whatever works. I want to use either css or html. No java or frames or mixed. I hope I explained this correctly. Thanks in advance
HTML: <html> <body> <div id="annoying-box">Some text, a picture or something else</div> </body> </html> Code (markup): CSS: #annoying-box { position: fixed; top: 10px; /* space between top of browser and annoying box */ left: 10px; /* space between top of browser and annoying box */ width: 100px; height: 100px; } Code (markup):