gpt4 book ai didi

javascript - 如何防止列表在带有列间隙的容器内破裂?

转载 作者:行者123 更新时间:2023-11-28 06:54:58 26 4
gpt4 key购买 nike

我有一个容器,里面可以是任何内容。大多数时候有 p-tags 但有时也有一些列表。

我有以下代码:

<div class="content">
<ul>
<li>Test LI</li>
<li>Test LI</li>
<li>Test LI</li>
<li>Test LI</li>
<li>Test LI</li>
<li>Test LI</li>
</ul>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy.</p>
</div>

Nu 发生以下情况:列表正在被撕裂!可怜的名单。

enter image description here

我希望 li 再次连接。我尝试了以下 css,但到目前为止它对我不起作用。

.content {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 60px;
-moz-column-gap: 60px;
column-gap: 60px;
margin-bottom: 30px;
}

.content ul li {
-webkit-column-break-inside: avoid;
-moz-column-break-inside:avoid;
-moz-page-break-inside:avoid;
page-break-inside: avoid;
break-inside: avoid-column;
}

感谢您的帮助!

谢谢,罗宾

最佳答案

我找到了可能是最简单的解决方案。 (捂脸)

.products-post-content ul {
display: inline-block;
}

关于javascript - 如何防止列表在带有列间隙的容器内破裂?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33561324/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com