gpt4 book ai didi

html - 如何在 anchor 可点击的伪元素周围制作空白?

转载 作者:行者123 更新时间:2023-12-05 03:16:51 24 4
gpt4 key购买 nike

我构建了一个扩展箭头,我希望“内部”的白色区域可以点击(整个红色矩形)。

enter image description here

不幸的是,我不能在它周围添加一个 div,所以我需要一个替代解决方案。

.sageata {
height: 2px;
width: 40px;
position: relative;
display: inline-block;
cursor: pointer;
margin-right: 15px;
margin-bottom: 4px;
transition: all .4s ease;
background: #000000;
padding: 0 !important;
}

.sageata:hover {
width: 50px;
margin-right: 5px;
background: #000000 !important;
}

.sageata::before,
.sageata::after {
content: "";
background: #000000;
position: absolute;
height: 2px;
width: 15px;
border-radius: 30%;
}

.sageata::before {
right: -2px;
bottom: -5px;
transform: rotate(-45deg);
top: auto !important;
left: auto !important;
}

.sageata::after {
right: -2px;
top: -5px;
transform: rotate(45deg);
}
<a class="sageata" href="#"></a>

最佳答案

您可以增加 anchor 的高度并使用背景渐变而不是全尺寸颜色。

.sageata {
height: 24px;
width: 40px;
position: relative;
display: inline-block;
cursor: pointer;
margin-right: 15px;
margin-bottom: 4px;
transition: all .4s ease;
background: linear-gradient(to bottom,
transparent 0%,
transparent calc(50% - 1px),
#000 calc(50% - 1px),
#000 calc(50% + 1px),
transparent calc(50% + 1px),
transparent 100%
);
padding: 0 !important;
}

.sageata:hover {
width: 50px;
margin-right: 5px;
}

.sageata::before,
.sageata::after {
content: "";
background: #000000;
position: absolute;
height: 2px;
width: 15px;
border-radius: 30%;
}

.sageata::before {
right: -2px;
bottom: 5px;
transform: rotate(-45deg);
top: auto !important;
left: auto !important;
}

.sageata::after {
right: -2px;
top: 5px;
transform: rotate(45deg);
}
<a class="sageata" href="#"></a>

关于html - 如何在 anchor 可点击的伪元素周围制作空白?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74434158/

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