探秘 CSS Grid 响应式布局

  • Post author:
  • Post category:其他

CSS Grid 是一种快速实现响应式布局的方法,它比传统的布局方法更吸引人。

创建CSS Grid (网格) 布局

1、 HTML结构

<div class="container">
  <div class="header">header</div>
  <div class="menu">menu</div>
  <div class="content">content</div>
  <div class="footer">footer</div>
</div>

2、css结构

.container{
  display:grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: 50px 350px 50px;
  grid-gap: 5px;
  grid-template-areas:
        ". h h h h h h h h h h ."
        "m m c c c c c c c c c c"
        "f f f f f f f f f f f f";
}
@media screen and (max-width: 640px) {
    .container {
        grid-template-areas:
            "m m m m m m h h h h h h"
            "c c c c c c c c c c c c"
            "f f f f f f f f f f f f";
    }
}
.header {
    grid-area: h;
    background:red;
}
.menu {
    grid-area: m;
    background:blue;
}
.content {
    grid-area: c;
    background:yellow;
}
.footer {
   grid-area: f;
  background:green;
}

版权声明:本文为webofrxy原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。