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

grid

时间:2018-10-08 00:39:29      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:display   column   har   text   charset   spl   star   wrapper   app   

<!DOCTYPE html>
<html>
 <head>
  <meta charset="{CHARSET}">
  <title>11</title>
  <style type="text/css">
   .wrapper {
    display: grid;
    grid-template-columns: 100px 100px 100px;
    grid-template-rows: 100px 100px  100px;
    }
    .item1 {
    grid-column-start: 1;
    grid-column-end: 4;
    background-color: red;
}
    .item2 {
    grid-column-start: 2;
    grid-column-end: 4;
    background-color: goldenrod;
}
.item3 {
    grid-row-start: 2;
    grid-row-end: 4;
        background-color: green;
}
.item4 {
    grid-column-start: 2;
    grid-column-end: 4;
        background-color: gray;
}
.item5 {
    grid-column-start: 1;
    grid-column-end: 3;
    background-color: palegreen;
}
.item6{
    grid-column-start: 3;
    grid-column-end: 3;
    background-color: aliceblue;
}
  </style>
  
 </head>
 <body>
  <div class="wrapper">
  <div class="item1">1</div>
  <div class="item2">2</div>
  <div class="item3">3</div>
  <div class="item4">4</div>
  <div class="item5">5</div>
  <div class="item6">6</div>
</div>
 </body>
</html>

grid

标签:display   column   har   text   charset   spl   star   wrapper   app   

原文地址:https://www.cnblogs.com/ghostandgod/p/9751944.html

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