gpt4 book ai didi

css hover 一个元素而不影响 :after

转载 作者:行者123 更新时间:2023-12-05 08:03:01 26 4
gpt4 key购买 nike

如何阻止伪元素受到 parent 悬停的影响?

.list-item {
position: absolute;
background: black;
color: white;
padding: 10px 20px;
transition: all 250ms ease-in-out;
}

.list-item:hover {
transform: scale(1.5);
}

.list-item:after {
content: '';
position: absolute;
width: 20px;
height: 20px;
background: orange;
z-index: 10;
border-radius: 100%;
}
<div class="list-item">
test
</div>

悬停时,它会将所有悬停效果应用于 :after 伪元素

最佳答案

一种方法是对 ::after 伪元素应用相反的过渡:

.list-item:hover {
transform: scale(1.5);
}

.list-item:hover::after {
/* transform: scale(calc(1 - (your main scale amount - 1) / 2)); */
transform: scale(0.75);
}

关于css hover 一个元素而不影响 :after,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75129896/

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