zoukankan      html  css  js  c++  java
  • JS Web的Flex弹性盒子模型

    1. justify-content

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Flexbox弹性盒布局</title>
        <style>
            .demo{
                display: -webkit-flex;
                justify-content: space-between;
            }
        </style>
    </head>
    <style>
    
    </style>
    <body>
    <div class="demo">
        <div>姓名: 张三</div><div>年龄: 26岁</div>
    </div>
    <div class="demo">
        <div>性别: 男</div><div>生日: 1995-05-06</div>
    </div>
    <div class="demo">
        <div>检查编号: 25</div><div>住院号: 198</div>
    </div>
    </body>
    </html>
    

      

    效果图

     2.flex 三行二列

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Flexbox弹性盒布局</title>
        <style>
            .demo{
                display: -webkit-flex;
            }
    
            .item-flex{
                flex:1;
            }
        </style>
    </head>
    <style>
    
    </style>
    <body>
    <div class="demo">
        <label class="item-flex">姓名: 张三</label><label class="item-flex">年龄: 26岁</label>
    </div>
    <div class="demo">
        <label class="item-flex">性别: 男</label><label class="item-flex">生日: 1995-05-06</label>
    </div>
    <div class="demo">
        <label class="item-flex">检查编号: 25</label><label class="item-flex">住院号: 198</label>
    </div>
    </body>
    </html>
    

      

      效果图

  • 相关阅读:
    第十一节 jQuery特殊效果
    第十节 使用index和一个点击事件实现选项卡
    synchronized和lock两种锁的比较
    常见的四种线程池和区别
    mybatis中的#和$的区别
    web 防止SQL注入
    GIT配置免密登录
    热点 Key 问题的发现与解决
    Redis缓存击穿
    面试必问之JVM原理
  • 原文地址:https://www.cnblogs.com/linlf03/p/7352767.html
Copyright © 2011-2022 走看看