gpt4 book ai didi

html - 防止 LI 文本在内联列表的 LI 内换行;打破换行列表

转载 作者:太空宇宙 更新时间:2023-11-04 10:16:40 25 4
gpt4 key购买 nike

我使用列表在一行中显示多个标签,类似于标签在本网站上的显示方式。

如果标签列表比容器宽,我希望将整个标签(列表项)移动到下一行。但是,现在会发生什么,如果单个标签有空格,它会在空格处换行。

如何将整个 LI 强制到下一行?

代码如下:

<ul class="tags row cf">
<li><a href="/slug1">first tag</a></li>
<li><a href="/slug2">another tag</a></li>
</ul>

还有 CSS:

.tags {
list-style-type: none;
padding: 0;
font-size: smaller;
}

.row {width: 100%}
.row::before,
.row::after {display: table; content: " "; clear: both}

.cf:after {
clear: both;
}
.cf:before, .cf:after {
content: " ";
display: table;
}

最佳答案

添加

.tags li {
display: inline-block;
}

关于html - 防止 LI 文本在内联列表的 LI 内换行;打破换行列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37197874/

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