作者:狮子_贾寒璐_759 | 来源:互联网 | 2023-02-11 21:27
在我的项目中,我想在两列中显示内容(每列50%),如果内容不适合,则将列移到下一行并填充水平空间。
这是两个图像,以显示我的意思。
对于短文本,将其显示在两列中:
当文本不再适合时,即任一列的宽度都在50%以上时,将第二列的内容移至下一行,以填充所有可用的水平空间。有点像这样:
只能使用CSS做到这一点吗?
1> LGSon..:
您可以使用flexbox
和white-space: nowrap
小提琴片段
堆栈片段
.wrapper {
display: flex;
flex-wrap: wrap;
margin-bottom: 10px;
}
.left,
.right {
flex: 1 0 50%;
background: lightgreen;
white-space: nowrap;
text-align: center;
padding: 10px;
box-sizing: border-box;
}
.right {
background: lightblue;
}
This is a longer text. This is a longer text.
This is a shorter text.
This is an even longer text. This is an even longer text.
This is a shorter text.