码迷,mamicode.com
首页 > 其他好文 > 详细

网格布局

时间:2018-10-08 00:51:03      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:column   htm   body   nbsp   utf-8   doctype   temp   bubuko   spl   

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <title>布局</title>
 <style>
  .box{
   display: grid;
   grid-template-columns:100px 100px 100px 100px 100px;
   grid-template-rows: 100px 100px 100px 100px 100px;

  }
  }
       .num{
            font-size: 150%;
            padding: 20px;
            margin: 10px;
        }
  .one{
   background: red;
      
   grid-area: 1/1/2/6;
  
  }
  .two{
   background: orange;
      
   grid-area: 2/1/6/2;
  
  }
  .three{
   background: blue;
      
   grid-area: 2/2/3/5;
  
  }
  .four{
   background: pink;
      
   grid-area: 3/2/4/5;
  
  }
  .five{
   background: yellow;
      
   grid-area: 4/2/5/5;
  
  }
  .six{
   background: green;
      
   grid-area: 5/2/6/5;
  
  }
  .seven{
   background: purple;
      
   grid-area: 2/5/6/6;
  
  }
 </style>
</head>
<body>
 <h1>网格布局</h1>
 <div class="box">
  <div class="num one">one</div>
   <div class="num two">two</div>
  <div class="num three">three</div>
  <div class="num four">four</div>
  <div class="num five">five</div>
  <div class="num six">six</div>
        
        <div class="num seven">seven</div>
 </div>
</body>
<html>
技术分享图片

 

网格布局

标签:column   htm   body   nbsp   utf-8   doctype   temp   bubuko   spl   

原文地址:https://www.cnblogs.com/0sakura0/p/9752024.html

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