在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在开始正文前,我介绍一下overflow和flex布局的某些用法。 代码如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>overflow:auto的用法</title> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" /> <link rel="stylesheet" type="text/css" href="css/reset.css" /> <style type="text/css"> html,body{ width: 100%; height: 100%; } .container{ width: 100%; height: 100%; display: flex; flex-direction: column; } .header{ width: 100%; height: 100px; background: #f99; } .content{ width: 100%; height: 100%; overflow: auto; background: yellow; flex: 1; } .footer{ width: 100%; height: 100px; background: #99f; } </style> </head> <body> <div class="container"> <div class="header"> </div> <div class="content"> <ul> <li>111111</li> <li>111111</li> <li>111111</li> <li>111111</li> <li>111111</li> <li>111111</li> <li>111111</li> <li>111111</li> 这里的li要多写一些,这样才会显示效果,我这里为了省篇幅。 </ul> </div> <div class="footer"> </div> </div> </body> </html> 要实现overflow: auto;这个效果,首先布局,再写样式。 .container{ width: 100%; height: 100%; display: flex; flex-direction: column; } 还有就是一定要给html和body给宽度和高度100%; html,body{ width: 100%; height: 100%; } 头部和底部都给固定的高度,一般的app的头部和底部都是固定的,像微信聊天记录。 .header{ width: 100%; height: 100px; background: #f99; } .footer{ width: 100%; height: 100px; background: #99f; } 中间的content给定flex:1,并且加上我们的主角overflow:auto;超出的内容自动裁剪。 .content{ width: 100%; height: 100%; overflow: auto; background: yellow; flex: 1; } 效果图如下:
中间的内容区可以上下滑动,超出的部分自动裁剪了。 到此这篇关于overflow:auto的用法详解的文章就介绍到这了,更多相关overflow:auto用法内容请搜索极客世界以前的文章或继续浏览下面的相关文章,希望大家以后多多支持极客世界! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论