gpt4 book ai didi

html - 之间有线的水平列表项

转载 作者:搜寻专家 更新时间:2023-10-31 08:39:22 25 4
gpt4 key购买 nike

我试图在 <li> 之间放置一条灰色水平细线水平导航栏上的元素以提供元素之间的连接感知。代码如下所示。如何在这些元素之间添加一条简单的线?

ul {
display: flex;
align-items: stretch; /* Default */
justify-content: space-between;
width: 100%;
margin: 0;
padding: 0;
}
li {
display: block;
flex: 0 1 auto; /* Default */
list-style-type: none;
}
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>

最佳答案

这是在每个 li 之间运行的行的示例。

enter image description here

  • position: relative 添加到 ul 使其成为 :after 元素的父元素
  • 位置 :after 使用垂直平移在字符的垂直中间
  • li 提供 z-indexbackground-color 以便它们保持在灰线的“顶部”

ul {
display: flex;
align-items: stretch; /* Default */
justify-content: space-between;
width: 100%;
margin: 0;
padding: 0;
position: relative;
}

li {
display: block;
flex: 0 1 auto; /* Default */
list-style-type: none;
background-color: white;
padding: 0 0.75em;
z-index: 1;
}

li:first-child {
padding-left: 0;
}

li:last-child {
padding-right: 0;
}

ul:after {
content: '';
border-bottom: 1px solid lightgray;
position: absolute;
transform: translateY(-50%);
top: 50%;
width: 100%;
}
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>

关于html - 之间有线的水平列表项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54657249/

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