grid布局
Posted azurite
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了grid布局相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<meat charset="utf-8">
<head>
<style>
.wrapper{
display: grid;
grid-template-columns: repeat(5,1fr 2fr);
grid-template-rows: 200px 200px;
background: lightyellow;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="box">One</div>
<div class="box">Two</div>
<div class="box">Three</div>
<div class="box">Four</div>
<div class="box">Five</div>
</div>
</body>
</html>
以上是关于grid布局的主要内容,如果未能解决你的问题,请参考以下文章