美文网首页
css等比例矩形

css等比例矩形

作者: w_wx_x | 来源:发表于2019-09-26 11:43 被阅读0次
<style type="text/css">
    .box{
        width: 500px;
    }
    .container{
        width: 100%;
        padding-bottom: 50%;
        position: relative;
    }
    .content{
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: red;
    }
</style>
</head>

<body>
<div class="box">
    <div class="container">
        <div class="content">122aaaaa22</div>
    </div>
</div>
</body>
image.png
image.png

相关文章

网友评论

      本文标题:css等比例矩形

      本文链接:https://www.haomeiwen.com/subject/rqegyctx.html