首页 > 其他 > 详细

简单的grid属性练习

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

html

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>练习·落以零</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="item1">1</div>
<div class="item2">2</div>
<div class="item3">3</div>
<div class="item4">4</div>
</div>
</body>
</html>

 

css

 

.container {
display: grid;
grid-template-columns: 50px 50px 50px;
grid-template-rows: 40px 40px 40px 40px;
}
.container > div{
border: 1px solid pink;
background: lightsalmon;
}
.item1{
grid-row: 1/2;
grid-column: 1/4;
}
.item2{
grid-row: 2/5;
grid-column: 1/2;
}
.item3{
grid-row: 2/5;
grid-column: 3/4;
}
.item4{
grid-row: 3/4;
grid-column: 2/3;
}

 

简单的grid属性练习

原文:https://www.cnblogs.com/luoyiling/p/9716103.html

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