CSS3 实现footer 固定在底部(无论页面多高始终在底部)
程序员文章站
2024-01-05 12:32:16
这篇文章主要介绍了CSS3 实现footer 固定在底部(无论页面多高始终在底部)的相关资料,需要的朋友可以参考下... 19-10-15...
前言
把 footer 区固定在底部,无论页面高度多宽,它始终在底部不会变,就像移动端的菜单一样。
<!doctype html> <html> <head> <meta charset="utf-8" /> <title>document</title> <!-- css --> <style> #demo{ position: fixed; left: 0px; bottom: 0px; width: 100%; height: 50px; background-color: #eee; z-index: 9999; } </style> </head> <body> <footer id="demo">我是footer</footer> </body> </html>
总结
以上所述是小编给大家介绍的css3 实现footer 固定在底部(无论页面多高始终在底部),希望对大家有所帮助