码迷,mamicode.com
首页 > 微信 > 详细

网格grid的分享和总结(参考web前端微信公众号内容)

时间:2020-06-11 00:24:16      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:text   template   top   utf-8   用法   htm   生成   grid   license   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>网格布局Grid用法</title>
    <style>
        body{
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
        }
        .gridtable{
            display: grid;
            /* width: 100%;(容器的宽度可以规定也可以不固定,其中若不规定宽度则追溯到父集的宽度直至body ,高也一样*/
            /* grid-template-columns: 30% 40% 30%; */
            /*可以大于100%,也可以用实际的数值*/
            /* grid-template-rows: 50px 60px ; */
            /*可以大于100%,也可以用实际的数值*/
            width: 400px;
            height: 400px;
        }
        .gridtable>div{
            text-align: center;
        }
        .gridtable>div:nth-child(1){
            background: deepskyblue;
            grid-column-start: 1;
            grid-column-end: 3;
        }
        .gridtable>div:nth-child(2){
            background: deeppink;
        }
        .gridtable>div:nth-child(3){
            background: darkcyan;
            grid-row-start: 2;
            grid-row-end: 4;
        }
        .gridtable>div:nth-child(4){
            background: lightsalmon;
            grid-column-start: 2;
            grid-column-end: 4;
        }
        .gridtable>div:nth-child(5){
            background: lightcoral;
        }
        .gridtable>div:nth-child(6){
            background: darkseagreen;
        }
    </style>
</head>
<body>
    <div class="gridtable">
        <div>1</div>
        <div>2</div>
        <div>3</div>
        <div>4</div>
        <div>5</div>
        <div>6</div>
    </div>
</body>
</html>

技术图片
第一张代码生成的页面图,第二张是个人对grid-column-start(end)中的column
的备注,其中黑线代表column,下方绿色数字代表个数,这样就很容易理解这行代码的意思了,同理可知row!
技术图片

本文转载于:猿2048→https://www.mk2048.com/blog/blog_hkhj2ikbkhj.html

网格grid的分享和总结(参考web前端微信公众号内容)

标签:text   template   top   utf-8   用法   htm   生成   grid   license   

原文地址:https://www.cnblogs.com/10yearsmanong/p/13090225.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!