通用背景圖尺寸
pc : 1920*1080 .png .jpg
wap: 750*1334? .png .jpg
背景圖自適應(yīng) css
* {
? ? ? ? ? ? margin: 0;
? ? ? ? ? ? padding: 0;
? ? ? ? }
? ? ? ? html {
? ? ? ? ? ? height: 100%;
? ? ? ? }
? ? ? ? body {
? ? ? ? ? ? background: url('1920*1080圖片地址')no-repeat center;
? ? ? ? ? ? background-size: 100% 100%;
? ? ? ? }
@media screen and (min-width: 750px) {
? ? ? ? ? ? body {
? ? ? ? ? ? background: url('750*1334圖片地址')no-repeat center;
? ? ? ? ? ? background-size: 100% 100%;
? ? ? ? }
? ? ? ? }
pc端打開效果

wap端打開效果
