處理移動端上滑的白邊
/* 處理移動端上滑的白邊 */
方式1:
css html, body { overflow: hidden; height: 100%; }
方式2:
css body { position: fixed; top: 0; left: 0; right: 0; }
/* 處理移動端上滑的白邊 */
方式1:
css html, body { overflow: hidden; height: 100%; }
方式2:
css body { position: fixed; top: 0; left: 0; right: 0; }