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

设置图形在一个背景图片中的绝对定位

时间:2016-09-03 00:59:55      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:

图片相对于“square”的位置,在最右侧居中的位置。

技术分享

.square{
   width:100%;
  height:500px;
  position:relative;
}
img{
  position:absolute;
  z-index:2;
  top:50%;
  right:-2px;//不设置为0是为了避免出现图片的边框
  margin-top:-10px;//将图片上移是为了能使其居中,根据图片的大小设置数值
}

 

设置图形在一个背景图片中的绝对定位

标签:

原文地址:http://www.cnblogs.com/Thelma/p/5835973.html

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