实现css使按钮button固定在底部!
2021-01-20 18:16
阅读:750
YPE html>
标签:一个 meta absolute port name set http scale for
要实现的效果:
如果上面元素较少,提交按钮在屏幕底部,如果上面元素较多,接近一屏,或者超过一屏,按钮随之下移。
需要以下几点:
1、按钮和上面元素在一个div中,父div相对定位,需要居底的div绝对定位。
2、父div min-height: 100vh。
3、父div设一个伪类,伪类设置一定高度,或者直接用padding-bottom。
完整demo:
Title { border: 0; margin: 0; } .cont{ position: relative; min-height: 100vh; padding-bottom: 95px; box-sizing: border-box; } .cont .list { height: 65px; line-height: 65px; border-bottom: 1px solid #F2F2F2; text-align: center; font-size: 15px; background-color: #ffffff; } .btn { position: absolute; text-align: center; bottom: 0; font-size: 16px; color: #FFFFFF; margin: 25px 0; width: 335px; height: 45px; line-height: 45px; background: #E0E0E0; border-radius: 5px; background-color: #1B68FD; left: 50%; transform: translateX(-50%); }listlistlistlistlistlistlistlistlistlistlistlistlist按钮
作者:指尖跳动
链接:https://www.jianshu.com/p/d48e93a8f459
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
链接:https://www.jianshu.com/p/d48e93a8f459
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
实现css使按钮button固定在底部!
标签:一个 meta absolute port name set http scale for
原文地址:https://www.cnblogs.com/Ifyou/p/13305147.html
上一篇:如何解决json返回的乱码
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:实现css使按钮button固定在底部!
文章链接:http://soscw.com/index.php/essay/44660.html
文章标题:实现css使按钮button固定在底部!
文章链接:http://soscw.com/index.php/essay/44660.html
评论
亲,登录后才可以留言!