当前位置: 移动技术网 > IT编程>网页制作>CSS > 前端---固定在底部

前端---固定在底部

2019年05月04日  | 移动技术网IT编程  | 我要评论
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>

 

如您对本文有疑问或者有任何想说的,请 点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网