zoukankan      html  css  js  c++  java
  • 骰子的布局(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

  • 相关阅读:
    史上最全的 Python 3 类型转换指南
    Python 3 进阶 —— print 打印和输出
    Go 标准库 —— sync.Mutex 互斥锁
    Python 判断文件/目录是否存在
    测试用例设计——如何提高测试覆盖率
    多语言的测试经验分享
    robotium教材(一):robotium环境搭建
    Android应用开发中出现appcompat-v7错误
    Android CPU使用率:top和dump cpuinfo的不同
    Kernel Time和User Time分别指什么
  • 原文地址:https://www.cnblogs.com/xutongbao/p/9924874.html
Copyright © 2011-2022 走看看