摘要:
1.grid-template设置网格模板,实现四列两行布局;grid-gap设置网格间隙,包括行和列 2.grid布局,使用fr单位实现等比例分配空间。fr是分数(fraction)的缩写 阅读全文
摘要:
section { display: flex; width:100%; background: blue; counter-increment: row; line-height: 50px;}section:before{ content:"第"counter(row)"行"; color:#fff;}section div... 阅读全文