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

页面布局

时间:2020-07-31 18:01:58      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:nim   object   div   ack   ati   max   doctype   auto   会同   

1、padding-bottom实现等比例缩放

原理:
1、父元素设置定位为相对定位(position: relative)
2、子元素设置定位为绝对定位(position: absolute)
3、父元素padding-bottom值为百分比时以父元素为参考,正方形时同父元素一样的百分比。
4、子元素的绝对定位会脱离文档流,设置其width、height为100%则会同父元素保持一样的比例。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale-1" />
        <title>padding-bottom实现宽高等比缩放</title>
        <style>
            .imgItem { position: relative;width: 50%;padding-bottom: 50%;margin:  20px auto; }
            .imgItem div { position: absolute;z-index: 3; width: 100%;height: 100%; }
            img { width: 100%;height: 100%;object-fit: cover; }
        </style>
    </head>
    <body>
        <div class="imgItem">
            <div><img src="http://img.cgypt.com/goods/2020072413573837640807.jpg" /></div>
        </div>
        <div class="imgItem">
            <div><img src="http://img.cgypt.com/ad/2020052110265727783873.jpg" /></div>
        </div>
    </body>
</html>

 

页面布局

标签:nim   object   div   ack   ati   max   doctype   auto   会同   

原文地址:https://www.cnblogs.com/L-xjco/p/13410415.html

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