I am looking to add a button to the bottom right corner of my webpage and have it remain static even when scrolling. I attempted to do this through CSS, but unfortunately my skills are not advanced enough.
<input type="button" onclick="delegate.php" id="delegate" value="Delegate">
#delegate {
position: fixed;
bottom: 0;
right: 0;
}