
推荐教程:Bootstrap教程
1、首先我们需要自定义一个css样式
.bg {
background:url(图片地址) no-repeat center;
background-size:contain;
}
2、在我们需要用到该样式的div中引用它
<div class="row bg">
3、如果需要图片不随滚动条滚动,即固定不动则加fixd
.bg {
background:url(图片地址) no-repeat center fixed;
background-size:contain;
}
.........................................................