zoukankan      html  css  js  c++  java
  • Grid Layout

    .wrapper {
      display: grid;        /*wrapper的显示按照grid的属性  */
      grid-template-columns: repeat(3, 1fr);    /*grid-template-columns 为属性定义,定义网格   repeat为重复,其中第一个参数代表重复次数  fr为按照容器宽度计算后的基本单位*/
      grid-gap: 10px;                   /*设置网格间隔10像素*/
      grid-auto-rows: minmax(100px, auto);       
    }
    .one {
      grid-column: 1 / 3;        /*定义one占据范围为左到距右边界三分之一处*/
      grid-row: 1;           /*定义长度为默认长度*/
    }
    .two { 
      grid-column: 2 / 4;      /*定义two占据左半边*/
      grid-row: 1 / 3;        /*定义其长度为默认两倍*/
    }
    .three {
      grid-column: 1;      /*定义其长度为下一个网格的一倍*/
      grid-row: 2 / 5;      /*定义长度为下一网格的5/2倍*/
    }
    .four {
      grid-column: 3;        /*定义长度为该网格的第几部分*/
      grid-row: 3;          /*定义其起始位置为第三列*/
    }
    .five {
      grid-column: 2;          /*定义起始位置为第二列*/
      grid-row: 4;            /*定义起始位置为第四根网格线*/
    }
    .six {
      grid-column: 3;            /*定义起始位置为第三网格线*/
      grid-row: 4;               /*定义起始位置为第四网格线*/
    }
  • 相关阅读:
    Xamarin.Forms项目无法添加服务引用
    Xamarin Android长度单位区别
    21IC菜农研究的HotWC3超级CRC运算器
    Delphi天气预报查询
    超外差接收机工作原理?
    ARM汇编指令的特点和速查表
    序列号的设计,不重复的实现一机一码
    iOS第一个简单APP
    GetEnvironmentVariable 获取常用系统变量(转)
    Delphi版的Base64转换函数(修改版)
  • 原文地址:https://www.cnblogs.com/Cheyenne-007/p/10139365.html
Copyright © 2011-2022 走看看