Answers for "keep footer fixed at bottom"

CSS
0

set footer element at bottom

<html>
<title>Set footer bottom</title>
<body>
<footer style = "position: absolute;bottom: 0;">copyright @2021</footer>
</body>
</html>
Posted by: Guest on July-17-2021
1

css footer always at bottom but visible

/* Fix the footer to the bottom */
footer { position: fixed; }
Posted by: Guest on May-16-2021

Code answers related to "keep footer fixed at bottom"

Browse Popular Code Answers by Language