css 一张背景图铺满整个页面 html
1.body{
backgroung:ure(./ing/picture.png)
backgroung-size:100% 100%;
background-repeart:no-repeart;
background-attachment:fixed;
overflow:auto;
}
vue中
-
<div id="home"></div>css: <style>#home {
-
width: 100%;
-
height: 100%;
-
background: url("~@/images/home/h_bg.png") center center no-repeat;
-
background-size: 100% 100%;
-
position: fixed;//固定定位
-
}
-
背景全屏,内容完全显示且可滚动查看
-
<div id="home"></div>
-
-
css:
-
<style>
-
#home {
-
width: 100%;
-
height: 100%;
-
background: url("~@/images/home/h_bg.png") center center no-repeat;
-
background-size: 100% 100%;
-
position:absolute;//绝对定位
-
}
-
</style>