让两个div盒子水平分布
时间: 2024-10-25 07:17:48 浏览: 11
jquery实现div阴影效果示例代码
在HTML和CSS中,让两个div盒子水平排列通常可以使用display属性以及flexbox或grid布局。以下是两种常见的方法:
1. **使用`display: flex;`**:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<style>
.container {
display: flex;
justify-content: space-between; /* 宽度相等时均匀分布 */
}
.box {
width: 50%; /* 或者自适应宽度 */
height: 100px;
background-color: #f00; /* 示例颜色 */
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="box">Box 1</div>
<div class="box">Box 2</div>
</div>
</body>
</html>
```
2. **使用`display: grid;`** (适用于更复杂的布局):
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<style>
.container {
display: grid;
grid-template-columns: repeat(2, 1fr); /* 创建两列 */
gap: 10px; /* 列间间距 */
}
.box {
height: 100px;
background-color: #f00;
}
</style>
</head>
<body>
<div class="container">
<div class="box">Box 1</div>
<div class="box">Box 2</div>
</div>
</body>
</html>
```
以上代码会创建两个div盒子,并使其水平并排。
阅读全文