在HTML中,要在每个上方放置两个div,可以使用以下方法:
<!DOCTYPE html>
<html>
<head><style>
.container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 10px;
}
.box {
background-color: #4CAF50;
padding: 10px;
font-size: 15px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="box">Div 1</div>
<div class="box">Div 2</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head><style>
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box {
background-color: #4CAF50;
padding: 10px;
font-size: 15px;
text-align: center;
width: 45%;
}
</style>
</head>
<body>
<div class="container">
<div class="box">Div 1</div>
<div class="box">Div 2</div>
</div>
</body>
</html>
这两种方法都可以在每个上方放置两个div,并且可以根据需要进行调整和定制。
领取专属 10元无门槛券
手把手带您无忧上云