PHP前端开发

bootstrap怎么设置背景图片自适应

百变鹏仔 1个月前 (11-14) #bootstrap
文章标签 自适应

推荐教程:Bootstrap教程

1、首先我们需要自定义一个css样式

.bg {       background:url(图片地址) no-repeat center;       background-size:contain;}

2、在我们需要用到该样式的div中引用它

<div><p><strong>3、如果需要图片不随滚动条滚动,即固定不动则加fixd</strong><br></p><pre class="brush:css;toolbar:false">.bg {       background:url(图片地址) no-repeat center fixed;       background-size:contain;}

原文章地址:https://www.cnblogs.com/Hayley1666/p/8479491.html