gpt4 book ai didi

潜在目录列表的 CSS 显示

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

我正在尝试创建一个页面,显示用户创建新元素时将创建的子目录列表。我有以下显示默认目录的代码,但是我更喜欢子目录文本更集中地对齐到人造目录叶行,例如对齐“-dir”,其中文本位于该行的中心。

代码如下:

.file-root {
position: relative;
display: inline-block;
}

.file-leaf {
display: block;
margin-left: 1em;
margin-bottom: 0.25em;
width: 1em;
height: 90%;
border-bottom: 1px solid black;
border-left: 1px solid black;
border-bottom-left-radius: 0.5em;
}

.file-leaf-label {
margin-left: 1em;
text-align: bottom;
}
<div class="container-fluid">

<div class="file-root">
<div class="row">
Root
</div>
<div class="row">
<div class="file-leaf">
<div class="file-leaf-label">
Animations
</div>
</div>
</div>
<div class="row">
<div class="file-leaf">
<div class="file-leaf-label">
Audio
</div>
</div>

</div>
<div class="row">
<div class="file-leaf">
<div class="file-leaf-label">
Documents
</div>
</div>
</div>
<div class="row">
<div class="file-leaf">
<div class="file-leaf-label">
Media
</div>
</div>
</div>
</div>
</div>

我不确定如何使文本与子目录叶行居中对齐。如果那是更好的解决方案,我不介意使用已经执行此操作的 css 和/或 js 库。我已经在使用 jquery、bootstrap 和 font awesome。

最佳答案

试试这个。我刚刚添加了 .file-leaf-label :

margin-bottom: -20px;
padding : 10px;

.file-root {
position: relative;
display: inline-block;
}

.file-leaf {
display: block;
margin-left: 1em;
margin-bottom: 0.25em;
width: 1em;
height: 90%;
border-bottom: 1px solid black;
border-left: 1px solid black;
border-bottom-left-radius: 0.5em;
}

.file-leaf-label {
margin-left: 1em;
text-align: bottom;
margin-bottom: -20px;
padding : 10px;
}
<div class="container-fluid">

<div class="file-root">
<div class="row">
Root
</div>
<div class="row">
<div class="file-leaf">
<div class="file-leaf-label">
Animations
</div>
</div>
</div>
<div class="row">
<div class="file-leaf">
<div class="file-leaf-label">
Audio
</div>
</div>

</div>
<div class="row">
<div class="file-leaf">
<div class="file-leaf-label">
Documents
</div>
</div>
</div>
<div class="row">
<div class="file-leaf">
<div class="file-leaf-label">
Media
</div>
</div>
</div>
</div>
</div>

关于潜在目录列表的 CSS 显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49984480/

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