【发布时间】:2022-09-30 15:49:57
【问题描述】:
我想要悬停效果(伪元素的背景变为绿色)只要当按钮悬停时出现,但是当伪元素(绿色框)悬停时也会出现。
button {
box-sizing: border-box;
background-color: blue;
padding: 10px 20px;
color: white;
position: relative;
}
button::before {
content: \'\';
position: absolute;
background-color: transparent;
height: 20px;
width: 100%;
left: 0;
bottom: -30px;
}
button:hover::before {
background-color: green;
}
<button>
I am a button
</button>