推薦教程: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