首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何在每个上方放置两个div

在HTML中,要在每个上方放置两个div,可以使用以下方法:

  1. 使用CSS Grid布局:
代码语言:html
复制
<!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>
  1. 使用Flexbox布局:
代码语言: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,并且可以根据需要进行调整和定制。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券