html - Putting a floating image in the bottom-right corner for example -


Actually I want to put a transparent image in the bottom-right corner. I read the top-right, right, and similar questions. However, I only have margin-top: 100%; , where I want this, but it will show the scroll bar and the picture will actually be down, I can not see it.

Any ideas are welcome.

Try

  correct: 0 pixels; Bottom: 0 pixels;  

Of course you want fixed position:

  situation: fixed;  

This will paste the user in the lower-right corner while scrolling.


Comments