首页 > 代码库 > 背景图片铺满body

背景图片铺满body

 添加背景图片: 

技术分享

 

添加样式代码如下:

<style type="text/css">
body {
background: url("image/bg.jpg") top center no-repeat;
background-size: cover;
}
</style>

 

最终效果如下图所示:技术分享

 

背景图片铺满body