gpt4 book ai didi

javascript - 如何在 javascript/Angular4+ 中用垂直线显示分层垂直数据?

转载 作者:行者123 更新时间:2023-11-28 01:56:41 25 4
gpt4 key购买 nike

我有一个要求以分层方式显示一些对象,如下所示。 enter image description here

这个层级是固定的,不需要动态子节点。

任何 css 演示代码都会有所帮助。谢谢。

最佳答案

下面是一些 CSS,用于使用 ulli 创建树结构:

ul.tree, ul.tree ul {
list-style: none;
margin: 0;
padding: 0;
}
ul.tree ul {
margin-left: 10px;
}
ul.tree li {
margin: 0;
padding: 0 7px;
line-height: 20px;
color: #369;
font-weight: bold;
border-left:1px solid rgb(100,100,100);

}
ul.tree li:last-child {
border-left:none;
}
ul.tree li:before {
position:relative;
top:-0.3em;
height:1em;
width:12px;
color:white;
border-bottom:1px solid rgb(100,100,100);
content:"";
display:inline-block;
left:-7px;
}
ul.tree li:last-child:before {
border-left:1px solid rgb(100,100,100);
}
<ul class="tree">
<li>2 Hosts
</li>
<li>10 objects
<ul>
<li>4 Type a
</li>
<li>4 Type b
</li>
<li>4 Type c
</li>
</ul>
</li>
</ul>

关于javascript - 如何在 javascript/Angular4+ 中用垂直线显示分层垂直数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49584661/

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