gpt4 book ai didi

javascript - 使用 CSS 跳过步进器连接线

转载 作者:行者123 更新时间:2023-11-30 13:48:36 25 4
gpt4 key购买 nike

我有一个用 React 构建的步进器组件。该组件接受一系列步骤,并接受一系列禁用步骤的索引以跳过它们。我想使用 CSS 以如下所示的方式跳过虚线。

enter image description here

我构建的步进器:

enter image description here

预期使用 CSS:

enter image description here

代码在Stackblitz

请导航至 Step.jsx 以获取样式。

请指教。

最佳答案

尝试为特定的 li 元素添加 .skip 类并在 css 下方添加

CSS

.skip:before{
content: "";
width: 100%;
height: 50px;
position: absolute;
bottom: -10px;
border: 1px dashed;
border-top: 0;
border-radius: 0 0 100% 100%;
}

输出

enter image description here

关于javascript - 使用 CSS 跳过步进器连接线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58775602/

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