推荐教程: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; }
原文章地址:https://www.cnblogs.com/Hayley1666/p/8479491.html
以上是bootstrap怎么设置背景图片自适应的详细内容。更多信息请关注PHP中文网其他相关文章!