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

图片自适应容器大小

时间:2018-12-05 23:21:31      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:jpg   htm   char   height   100%   lang   back   oct   abs   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>img auto</title>
    <style>
        body {
            position: relative;
        }
        .parent {
            position: absolute;
            width: 100%;
            height: 100%;
            top:0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        .item {
            float: left;
            width: 20%;
            margin: 10px 2.5%;
            height: 0;
            padding-bottom: 12.5%;
            background-color: #dbe0e4;
            background: url(gril.jpg) no-repeat;
            background-size: cover;
        }
    </style>
</head>
<body>
    <div class="parent">
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
    </div>
</body>
</html>

利用padding撑开盒子大小,padding-bottom撑开子元素的高度,子元素宽度与高度成比例,这样就可以自适应了

图片自适应容器大小

标签:jpg   htm   char   height   100%   lang   back   oct   abs   

原文地址:https://www.cnblogs.com/harlem/p/10074087.html

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