PHP前端开发

bootstrap怎么设置背景图片自适应屏幕大小

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

bootstrap设置背景图片自适应屏幕大小:  

css中编辑此样式:

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

然后在你的div里引用这个样式就行了:

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

更多Bootstrap相关技术文章,请访问Bootstrap教程栏目进行学习!