css把图片全铺作为背景
body{ margin: 0; background: url(img/bg.png) no-repeat fixed; background-size: cover; }
或者
html,body{ width: 100%; height: 100%; } body{ margin: 0; background: url(img/bg.png) no-repeat; background-size: cover; }
body{ margin: 0; background: url(img/bg.png) no-repeat fixed; background-size: cover; }
或者
html,body{ width: 100%; height: 100%; } body{ margin: 0; background: url(img/bg.png) no-repeat; background-size: cover; }