2017-09-02 58 views
0

對於我的網頁的移動版本,圖片之間有空白,我似乎無法刪除。如何刪除或禁用我的移動網頁的最小高度?

當我檢查編碼和打開和關閉它的最小高度消失:

@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; 
} 

網站:Creationflame.com

回答

0

min-height:initial;

This sets it back to what it was originally.

初始CSS關鍵字將屬性的初始值應用於一個 元素。它可以應用於任何CSS屬性,包括CSS 速記全部。

+0

對不起,我接受了,我傷心地沒有表現出來,因爲我是新來的。我忘了我必須接受它。 >< – Lushain