I'm having to leave a div that would be a "Buy" button fixed in the browser footer. Leave it at the end of the monitor, and even if the scroll scrolls down, it remains in the same position at the end. How could I do it using HTML / CSS?
I'm having to leave a div that would be a "Buy" button fixed in the browser footer. Leave it at the end of the monitor, and even if the scroll scrolls down, it remains in the same position at the end. How could I do it using HTML / CSS?
try:
position:fixed;
bottom:0px;