Files
2026-03-12 22:56:33 +08:00

43 lines
987 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Grid 布局</title>
<style>
body{
background-color: aliceblue;
display: flex;
justify-content: center;
}
.grid{
display: grid;
grid-template-columns: repeat(2,1fr);
column-gap: 10px;
row-gap: 20px;
padding-top: 150px;
}
.cell{
background-color: white;
border: 1px solid rgb(208, 228, 252);
border-radius: 20px;
text-align: center;
width: 300px;
padding-top: 25px;
padding-bottom: 25px;
font-weight: 700;
}
</style>
</head>
<body>
<section class="grid">
<div class="cell">HTML</div>
<div class="cell">CSS</div>
<div class="cell">JavaScript</div>
<div class="cell">TypeScript</div>
</section>
</body>
</html>