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

多个块级元素在水平方向占位置,实现在窗口变大变小的同时,四个图片依然会随之而动,从而显示响应式的效果

时间:2016-08-05 06:25:36      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

原理:块级元素想要在页面水平和垂直方向都居中:先让元素定位(绝对定位),然后水平方向上面:left=50%,margin-left=-(1/2*width)
垂直方向页面居中:top=50%,margin-top=-(1/2*height)
代码如下:
<div class="footer_top">
    <div class="footer_slogen">
        <span class="one"><img src="images/slogen1.png" alt=""/></span>
        <span class="two"><img src="images/slogen2.png" alt=""/></span>
        <span class="three"><img src="images/slogen3.png" alt=""/></span>
        <span class="four"><img src="images/slogen4.png" alt=""/></span>
    </div>
    <div class="footer_product"></div>
</div>
 
.footer_top{
    positionrelative;
}
.footer_slogen span{
    positionabsolute;
    left50%;
}
.footer_slogen .one{
    margin-left: -605px;
}
.footer_slogen .two{
    margin-left: -294px;
}
.footer_slogen .three{
    margin-left0px;
}
.footer_slogen .four{
    margin-left316px;
}
注意:(1)、在绝对定位后,没有给lrtb值,默认会以原来的标准流中的位置显示。
(2)、关于四个图形的层级都一样叠加在了一起只有相对定位和绝对定位和固态定位的元素才有层级的概念,浮动和标准流是没有层级的概念的,如果定位了几个相邻的元素在同一个位置
后面的元素会压在前面的元素上面,但是z-index都是0
(3)、在百分比定位里,没有margin-right的用法

多个块级元素在水平方向占位置,实现在窗口变大变小的同时,四个图片依然会随之而动,从而显示响应式的效果

标签:

原文地址:http://www.cnblogs.com/zhengqiu/p/5739045.html

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