bootstrop设置背景图片自适应屏幕
Posted xdong320
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrop设置背景图片自适应屏幕相关的知识,希望对你有一定的参考价值。
如果不用bootstrop框架,想让背景图片自适应窗口大小,可以这样做:
<style type="text/css"> html{height: 100%;} body.aa{height: auto; background: url(login-background.png) no-repeat center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; color: rgba(255, 255, 255, .95)} </style>
bootstrop中
css中编辑此样式:
.bg { background:url(图片地址) no-repeat center; background-size:contain; }
然后在你的div里引用这个样式就行了:
<div class="row bg">
使图片不随滚动条滚动,即固定不动则加fixd:
.bg { background:url(图片地址) no-repeat center fixed; background-size:contain; }
以上是关于bootstrop设置背景图片自适应屏幕的主要内容,如果未能解决你的问题,请参考以下文章