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>
    

      

      效果图

  • 相关阅读:
    Python之从头开始建立项目流程
    Python之建立APP流程以及SVN 的使用
    python之继承
    Python之实例对象的增删改查
    Python之类属性的增删改查
    read big file
    python minus 3 days or n days
    movie
    pyqt convert ui file to py file
    pyqt4 borderless window
  • 原文地址:https://www.cnblogs.com/linlf03/p/7352767.html
Copyright © 2011-2022 走看看