首页 > 其他 > 详细

不知名的作业

时间:2018-09-27 23:14:29      阅读:160      评论:0      收藏:0      [点我收藏+]

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <link href="Second.css" type="text/css" rel="stylesheet">
  <title>Document</title>
</head>
<body>
  <div class="wrapper">
  <div class="one" style="background:red" ><center>
  One</div>
  <div class="two" style="background:blue">Two</div>
  <div class="three" style="background:yellow">Three</div>
  <div class="four" style="background:green">Four</div>
  <div class="five" style="background:rgb(18, 1, 4)">Five</div>
  <div class="six"  style="background:black">Six</div>
</div>
</body>
</html>

 

 

 

 

CSS:
.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
.one {
  grid-column: 1/4;
  grid-row: 1/2;
}
.two {
  grid-column: 1 /2;
  grid-row: 2 / 5;
}
.three {
  grid-column: 3/4;
  grid-row: 2 / 5;
}
.four {
  grid-column: 2/3;
  grid-row: 3;
}
.five {
  grid-column: 2;
  grid-row: 4;
}
.six {
  grid-column: 2/3;
  grid-row: 2/3;
}

不知名的作业

原文:https://www.cnblogs.com/wmhtxt/p/9716148.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!