• 骰子的布局(flex)


    骰子的布局(一个点)

    <!DOCTYPE html>            
    <html>            
    <head>            
        <meta charset="UTF-8">        
        <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">      
        <title>骰子的布局(flex)</title>          
        <style type="text/css">    
            body{margin: 0}  
    
            .m-container{margin: 5px; padding: 5px; 100px;height: 100px;border:1px solid green;}
            .m-item {margin: 5px;  20px;height: 20px;border-radius: 10px;background-color: black;}
    
            .box1 {display: flex;justify-content: center;}  /*水平居中*/
            .box2 {display: flex;justify-content: flex-end;}  /*水平靠右*/
            .box3 {display: flex;align-items: center;}  /*垂直居中*/
            .box4 {display: flex;justify-content: center;align-items: center;}  /*水平垂直居中*/
            .box5 {display: flex;justify-content: center;align-items: flex-end;}  /*水平居中,垂直靠下*/
        </style>          
    </head>            
    <body>         
    
    <div class="m-container box1">
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box2">
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box3">
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box4">
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box5">
      <span class="m-item"></span>
    </div>
    
    </body>            
    </html>  

    骰子的布局(两个点)

    <!DOCTYPE html>            
    <html>            
    <head>            
        <meta charset="UTF-8">        
        <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">      
        <title>骰子的布局(flex)</title>          
        <style type="text/css">    
            body{margin: 0}  
    
            .m-container{margin: 5px; padding: 5px; 100px;height: 100px;border:1px solid green;}
            .m-item {margin: 5px;  20px;height: 20px;border-radius: 10px;background-color: black;}
    
            .box1 {display: flex;justify-content: space-between;}  /*底部两端对齐*/
            .box2 {display: flex;flex-direction: column; justify-content: space-between;}  /*靠左两端对齐*/
            .box3 {display: flex;flex-direction: column; justify-content: space-between;align-items: center;}  /*水平居中,两端对齐*/
            .box4 {display: flex;flex-direction: column; justify-content: space-between;align-items: flex-end;}  /*水平靠右,两端对齐*/
            .box5 {display: flex;} 
            .box5 .m-item:nth-child(2) {align-self: center;}
            .box6 {display: flex;justify-content: space-between;} 
            .box6 .m-item:nth-child(2) {align-self: flex-end;}        
        </style>          
    </head>            
    <body>         
    
    <div class="m-container box1">
      <span class="m-item"></span>
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box2">
      <span class="m-item"></span>
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box3">
      <span class="m-item"></span>
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box4">
      <span class="m-item"></span>
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box5">
      <span class="m-item"></span>
      <span class="m-item"></span>
    </div>
    
    <div class="m-container box6">
      <span class="m-item"></span>
      <span class="m-item"></span>
    </div>
    
    </body>            
    </html>  




    备注:欢迎加入web前端求职招聘qq群:668352707

  • 相关阅读:
    +7白盒测试与黑盒测试的定义与区别
    对于逆序数组,,选择排序 和 插入排序 那个更快?
    +1.1向量 链表 数组
    3.2 二十三种设计模式全解析
    3.1软件体系结构风格
    Mysql: 强制走索引:mysql between 日期索引 索引问题-日期索引使用
    php: xampp安装对应的phalcon版本(3.2.2-php5.6):比如redis-php5.6, php_igbinary-5.6
    京东自营,你TM太坑了。
    php:微信公众平台上传多媒体接口 41005错误
    php:如何使用PHP排序, key为字母+数字的数组(多维数组)
  • 原文地址:https://www.cnblogs.com/xutongbao/p/9924874.html
Copyright © 2020-2023  润新知