css grid layout in practice
css grid layout in practice
https://caniuse.com/#search=grid

subgrid

https://caniuse.com/#search=calc

tutorials
https://css-tricks.com/snippets/css/complete-guide-grid/


grid & animation
https://codepen.io/xgqfrms/pen/jOEEOWg
See the Pen CSS Grid Layout: Animation by xgqfrms
  (@xgqfrms) on CodePen.
grid & function
https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-4

https://codepen.io/xgqfrms/pen/JjoojYN
See the Pen CodePen Home That Grid Thing Everybody Loves 'Cause It's Awesome by xgqfrms
  (@xgqfrms) on CodePen.
grid layout
https://codepen.io/webgeeker/pen/GRgRVBZ
<!-- CSS Grid -->
<h1 class="title">CSS GRID</h1>
<div class="wrapper">
    <div class="header">HEADER</div>
    <div class="menu">MENU</div>
    <div class="content">CONTENT</div>
    <div class="footer">FOOTER</div>
</div>
.wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 水平 12 col 布局 */
    grid-template-rows: 40px 100px 40px;
    /* 垂直,3 row 高度 */
    /* overflow: auto; */
}
.wrapper > div {
    padding-left: 20px;
    color: #ffeead;
    display: flex;
    align-items: center;
    font-size: 20px;
    /* min-width: 200px; */
}
.header {
    grid-column: span 12;
}
.menu {
    grid-column: span 4;
}
.content {
    grid-column: span 8;
}
.footer {
    grid-column: span 12;
}
@media screen and (max-width: 480px) {
    .header {
        grid-column: span 6;
    }
    .menu {
        /* 指定所在的 row 为 1 */
        grid-row: 1;
        grid-column: span 6;
    }
    .content {
        grid-column: span 12;
    }
}
See the Pen css grid layout demo by xgqfrms
  (@webgeeker) on CodePen.
grid container
...
grid item





css grid & fallback
https://www.smashingmagazine.com/2017/11/css-grid-supporting-browsers-without-grid/
https://codepen.io/webgeeker/pen/LYEPqwe
* { box-sizing: border-box; }
body {
  margin: 40px;
  background-color: #fff;
  color: #444;
  font: 1.4em Arial, sans-serif;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 100px;
  grid-gap: 20px;
}
.grid > * {
  padding: 10px;
  border: 5px solid rgba(214,129,137,.5);
  border-radius: 5px;
  background-color: rgba(233,78,119,.5);
  color: #fff;
  float: left;
  width: 33%;
}
@supports (display:grid) {
  .grid > * {
    width: auto;
  }
}
https://zellwk.com/blog/calendar-flexbox-fallback/
@supports
特征检测, flexbox 渐进增强(grid 优雅降级)
https://developer.mozilla.org/en-US/docs/Web/CSS/@supports

https://caniuse.com/#search=@supports

/*  flexbox 渐进增强 */
.day-of-week,
.date-grid {
  display: flex;
}
/* grid  优雅降级 */
@supports (display: grid) {
  .day-of-week,
  .date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .date-grid button:first-child {
    grid-column: 6;
  }
}
CSS3 Grid Layout
http://www.csstutorial.org/css-grid-tutorial.html
https://www.cnblogs.com/xgqfrms/p/10771746.html
https://www.cnblogs.com/xgqfrms/p/10896992.html
refs
xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
css grid layout in practice的更多相关文章
- CSS: Grid Layout Module
		Grid Layout The CSS Grid Layout Module offers a grid-based layout system, with rows and columns, mak ... 
- [CSS] Get up and running with CSS Grid Layout
		We’ll discuss the display values pertinent to CSS Grid Layout – grid, inline-grid, and subgrid. Then ... 
- CSS Grid Layout In Action
		CSS Grid Layout In Action CSS 异形网格布局实战 refs https://static-nginx-online.fbcontent.cn/tutor/tutor-ybc ... 
- 各个浏览器开启CSS Grid Layout的方式
		2017年3月,Chrome.Firefox将开启默认支持. 当然对于很多人等不及浏览器默认支持,想提前体验一把,这里提供一些打开方式: 1.Chrome 在浏览器中输入:chrome://flags ... 
- CSS Grid layout布局
		CSS Grid布局 (又名"网格"),是一个基于二维网格布局的系统,主要目的是改变我们基于网格设计的用户接口方式.你只需要定义一个容器元素并设置display:grid,使用gr ... 
- CSS grid layout
		CSS网格布局用于将页面分割成数个主要区域,或者用来定义组件内部元素间大小.位置和图层之间的关系. 像表格一样,网格布局让我们能够按行或列来对齐元素. 但是,使用CSS网格可能还是比CSS表格更容 ... 
- CSS grid layout demo 网格布局实例
		直接 上代码,里面我加注释,相当的简单, 也可以去我的github上直接下载代码,顺手给个星:https://github.com/yurizhang/micro-finance-admin-syst ... 
- 关于CSS Grid Layout的代码解释
		.wrapper { display: grid; /*生成grid类型块级网格*/ grid-template-columns: repeat(3, 1fr); /*设置显示的列网格线,且重复3次1 ... 
- css之Grid Layout详解
		css之Grid Layout详解 CSS Grid Layout擅长将页面划分为主要区域,或者在从HTML基元构建的控件的各个部分之间定义大小,位置和图层之间的关系. 与表格一样,网格布局使作者能够 ... 
随机推荐
- 腾讯libco协程原理
			https://blog.csdn.net/GreyBtfly/article/details/83688420 堆栈 https://blog.csdn.net/lqt641/article/det ... 
- 【PostgreSQL】PostgreSQL数据库浅析
			前言 工作中数据库用的不多,大部分都是简单查询一下了事,某项目中突然要求后端进行比较全面的数据库操作,现对自己学到的东西做一下总结. 简介 废话不多说,上官网地址: PostgreSQL 9.4.4 ... 
- Windows搭建TestLink环境
			环境准备: 搭建php5.4.39+apache2.2+mysq5.5.28l环境 (可参考http://www.cnblogs.com/yangxia-test/p/4414161.html) (注 ... 
- Java面试题及解析(判断题)
			1.代码差错,判断代码对错,并指出错误处 abstract class Name{ private String name; public abstract Boolean isStupidName( ... 
- Java中的transient关键字,使用小结
			transient关键字的介绍: 一个对象只要实现了Serilizable接口,这个对象就可以被序列化,Java的这种序列化模式为开发者提供了很多便利,可以不必关系具体序列化的过程,只要这个类实现了S ... 
- java中的IO处理和使用,API详细介绍(二)
			字符流 [向文件中写入数据] 现在我们使用字符流 /** * 字符流 * 写入数据 * */ import java.io.*; class hello{ public static void mai ... 
- 封装验证blue事件插件
			(function ($) { $.fn.checkForm = function (options) { var root = this; //将当前应用对象存入root var isok = fa ... 
- .Net Core 使用 CSRedisCore 访问 Redis 的哨兵和主从复制
			一.创建Redis服务 运行环境是Window,安装Redis请看:安装教程. 直接开始创建Redis服务,演示就创建两个一主一从,先把安装路径下的 redis.windows.conf 文件复制一份 ... 
- 软件测试漫谈(web测试,自动化测试,Jmeter)
			软件测试,就是一个过程或一系列过程,用来确定计算机代码完成了其应该完成的功能不执行其不该有的操作. 简单说就是找bug的过程. 测试分类 (1)按测试方式分类:静态测试.动态测试 (2) 按测试方法分 ... 
- Codeforces Global Round 7 D1. Prefix-Suffix Palindrome (Easy version)(字符串)
			题意: 取一字符串不相交的前缀和后缀(可为空)构成最长回文串. 思路: 先从两边取对称的前后缀,之后再取余下字符串较长的回文前缀或后缀. #include <bits/stdc++.h> ... 
