码迷,mamicode.com
首页 > 其他好文 > 详细

bootstrop设置背景图片自适应屏幕

时间:2018-06-16 17:54:56      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:contain   设置   -o   引用   rgba   log   自适应屏幕   row   Oz   

如果不用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设置背景图片自适应屏幕

标签:contain   设置   -o   引用   rgba   log   自适应屏幕   row   Oz   

原文地址:https://www.cnblogs.com/xdong320/p/9190831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!