gpt4 book ai didi

html - 尝试用 CSS 绘制虚线

转载 作者:太空宇宙 更新时间:2023-11-03 19:49:23 24 4
gpt4 key购买 nike

enter image description here

我正在尝试用 CSS 绘制它,但我没有找到解决方案。谁能帮我这个?Ps:我搜索的东西很少,谢谢。

最佳答案

你可以在这里使用CSS 元素来绘制虚线:

.border {
border-top: 1px dotted #000000;
position: relative;
margin: 100px 0 0 0;
height: 4px;
}
.border::after {
content: "";
height: 1px;
border-top: 1px dotted #000000;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.border::before {
content: "";
height: 1px;
border-top: 1px dotted #000000;
width: 100%;
position: absolute;
top: -4px;
left: 0;
right: 0;
}
<div class="border">

</div>

关于html - 尝试用 CSS 绘制虚线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39101073/

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