欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

前端---固定在底部

程序员文章站 2022-06-24 14:13:44
1 2 3 4 5 Title 6 16 17 18 版本号: 19 20 ......
 1 <!doctype html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="utf-8">
 5     <title>title</title>
 6     <style>
 7     .footer{
 8     height: 100px;
 9 width: 100%;
10 background-color: #ddd;
11 position: fixed;
12 bottom: 0;
13     }
14     
15     </style>
16 </head>
17 <body>
18 <div class="footer"> 版本号:</div>
19 </body>
20 </html>