方法一:使用网格布局(Grid Layout)
html
<!DOCTYPE html>
<html>
<head>
<style>
.container {
height: 100px;
display: grid;
grid-template-columns: 2fr 1fr 3fr; /* 自定义每一列的比例 */
/* 将三个行都设置为平均分配剩余空间 */
/* grid-template-rows: 1fr 1fr 1fr; */
/* 设置 3 列,并使每列占据相同的比例 */
/*grid-template-columns: repeat(3, 1fr); */
gap: 20px; /* 设置列之间的间距 */
}
.item {
background-color: #f1f1f1;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="item">项目1</div>
<div class="item">项目2</div>
<div class="item">项目3</div>
</div>
</body>
</html>
方法二:使用多列布局(Multi-column Layout)
html
<!DOCTYPE html>
<html>
<head>
<style>
.container {
column-count: 3; /* 设置列数 */
column-gap: 20px; /* 设置列之间的间距 */
}
.item {
background-color: #f1f1f1;
padding: 20px;
-webkit-column-break-inside: avoid; /* 防止内容中断到不同列(Webkit 内核浏览器)*/
page-break-inside: avoid; /* 防止内容中断到不同列(非 Webkit 内核浏览器)*/
break-inside: avoid; /* 防止内容中断到不同列 */
}
</style>
</head>
<body>
<div class="container">
<div class="item">项目1</div>
<div class="item">项目2</div>
<div class="item">项目3</div>
</div>
</body>
</html>