如何删除或禁用移动页面的最小高度?

Lus*_*ain 5 css

对于我的页面的移动版本,图像之间有空白区域,我似乎无法删除.

当我检查编码并打开和关闭最小高度时,它会消失:

@media only screen and (max-width: 1024px)
.edgtf-section.edgtf-parallax-section-holder:not(.edgtf-full-screen-height-touch), .touch .edgtf-parallax-section-holder.edgtf-parallax-section-holder-touch-disabled:not(.edgtf-full-screen-height-touch) {
    height: auto !important;
    min-height: 400px;
}
Run Code Online (Sandbox Code Playgroud)

网站:Creationflame.com

Rob*_*Rob 10

min-height:initial;

这使它恢复到原来的状态.

初始CSS关键字将属性的初始值应用于元素.它可以应用于任何CSS属性,包括CSS简写全部.