首页 > 其他 > 详细

背景图片填充div

时间:2017-12-03 19:26:20      阅读:229      评论:0      收藏:0      [点我收藏+]

 

html:
<div class=”contain-title”><div>

css:
(1)这种情况下图片可以填充整个div,但背景色和原背景图片不一致
background: url(../images/mall-bg.png) no-repeat center center fixed;
height: 11.5rem;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
display: flex;
justify-content: space-around;
align-items: center;

(2)和背景图片基本一致,但背景图片在宽度上没有填充整个div,左右两边有间距
background: url(../images/mall-bg.png);
background-size: 100%;
height: 9rem;

(3)背景图片在宽度上填充整个div,且基本与原背景图片效果一致
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
background: url(../images/mall-bg.png);
height: 9rem;
background-position: center;
background-size: 110% 100%;

 

背景图片填充div

原文:http://www.cnblogs.com/haimengqingyuan/p/7966817.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!