zoukankan      html  css  js  c++  java
  • 纯CSS写正方形自适应宽高,且左侧高与正方形高保持一致

    先上图

    虽然写法有点暴力,但是效果还是可以的,哈哈哈哈哈
    html:
    <div class="box">
                <div class="left">
                    <div class="zfxCon" style="">leftleftleftleftleftleftleftleftleftleftleftleft</div>
                </div>
                <div class="zfx">
                    <div class="zfxCon" style="">正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形</div>
                </div>
                <div class="zfx">
                    <div class="zfxCon" style="">正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形</div>
                </div>
                <div class="zfx">
                    <div class="zfxCon" style="">正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形</div>
                </div>
                <div class="zfx">
                    <div class="zfxCon" style="">正方形正方形正方形正方形正方形正方形正方形正方形正方形正方形</div>
                </div>
            </div>

    css:

    .box{
                    color: #f00;
                     100%;
                    float: left;
                    background-color: #269ABC;
                }
                .left{
                     20%;
                    height: 0;
                    float: left;
                    margin:5% 2%;
                    padding-bottom: 70%;
                    position: relative;
                }
                .zfx{
                     30%;
                    height: 0;
                    float: right;
                    margin: 5% 2%;
                    padding-bottom: 30%;
                    position: relative;
                }
                .zfxCon{
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    overflow: auto;
                    word-wrap: break-word;
                }

  • 相关阅读:
    CSS 学习资源 W3C school
    嵌入式计算机与PC机的区别
    Javascript:新消息闪烁标题提示代码分享 (转)
    有源RFID与无缘RFID的区别
    event.X和event.clientX有什么区别
    什么是射频耦合和射频补偿?
    【转】js日期时间函数
    JQuery操作cookie插件
    js操作cookie (转)
    UIM卡
  • 原文地址:https://www.cnblogs.com/laiyt/p/7568357.html
Copyright © 2011-2022 走看看