且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

背景尺寸:盖不工作在纵向上的Andr​​oid平板电脑

更新时间:2022-06-11 06:43:52

我相信你可以通过定义html和body标签的高度在CSS中,像这样解决这个问题:

I believe you can fix it by defining the height of the html and body tags in the CSS, like so:

html{
 height:100%;
 min-height:100%;
 }
body{
 min-height:100%;
 }

希望这有助于

hope this helps