简单的grid属性练习
Posted luoyiling
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的grid属性练习相关的知识,希望对你有一定的参考价值。
<!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属性练习的主要内容,如果未能解决你的问题,请参考以下文章