猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
移动端页面如何获取当前页面高度并赋值给div最小高度?
如果不设置一个最小高度,那如果内容不够,那底部的
footer
会上去,留下片空白。
慕标5832272
浏览 1698
回答 1
1回答
宝慕林4294392
在移动端,可以使用flex布局给你个例子:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> * { padding: 0; margin: 0; } html, body { height: 100%; } .container { height: 100%; display: flex; flex-direction: column; } .body { flex: 1; background: red; } .footer { height: 100px; width: 100%; } </style> </head> <body> <div class="container"> <div class="body"></div> <div class="footer"></div> </div> </body> </html>
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
JavaScript
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续