Answers for "how to put link at bottom of page html"

CSS
0

how to put link at bottom of page html

<div class="bottom_link">Any link in Bottom - Right</div>

div.bottom_link {
    position:fixed;
    bottom:0px;
    right:0px;
    height:20px;
    width:auto;
    padding:10px;
    background-color:red; 
    color:white;
}
Posted by: Guest on April-11-2022

Code answers related to "how to put link at bottom of page html"

Browse Popular Code Answers by Language