gpt4 book ai didi

html - 如何在图标之间创建垂直虚线(带有示例图像)

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

在尝试了很多东西并搜索了网络之后,我仍然无法找到如何在图标之间创建类似的垂直虚线,如图所示。有人关于如何实现这一目标的想法?任何帮助都感激不尽!! enter image description here

注意:这不是网站的截图
所以我无法查看源代码:/

最佳答案

您可以使用 border-left 实现这一点。

检查这个 fiddle :fiddle

.icon {
text-align: center;
width: 50px;
background: lightgray;
border-radius: 50%;
border: 2px solid grey;
}

.icon > i {
margin: 33% auto;
}

.dotted:after {
content:"";
position: absolute;
z-index: -1;
top: 0;
bottom: 0;
left: 50%;
height: 100%;
height: inherit;
border-left: 2px dotted lightgrey;
}

.dotted {
position: relative;
margin: 10px auto;
width: 50px;
}
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class="dotted">
<div class="icon">
<i class="fa fa-camera-retro"></i>
</div>
<br>
<br>
<br>
<br>
<br>
<div class="icon">
<i class="fa fa-camera-retro"></i>
</div>
</div>

关于html - 如何在图标之间创建垂直虚线(带有示例图像),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34692557/

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