Answers for "how to fix a div to the bottom of the screen"

2

keep div at the bottom of page

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
Posted by: Guest on November-29-2020
0

css keep div at bottom of screen when scrolling

<style type="text/css">
#info { 
    height: 40px; 
    position: fixed; 
    bottom:0%;
    width:100%; 
    background-color: #393838; 
    opacity: 1;
}
</style>
<div id="info">Scroll for info</div>
Posted by: Guest on March-08-2022

Code answers related to "how to fix a div to the bottom of the screen"

Browse Popular Code Answers by Language