最佳答案
我有一个这样的设置:
<div id="button">Button</div>
这是 CSS:
#button {
color: #fff;
display: block;
height: 25px;
margin: 0 10px;
padding: 10px;
text-indent: 20px;
width: 12%;
}
#button:before {
background-color: blue;
content: "";
display: block;
height: 25px;
width: 25px;
}
有没有一种方法可以给伪元素一个悬停效果,比如 #button:before:hover {...}
? 有没有可能让伪元素悬停以响应另一个悬停的元素,比如 #button:hover #button:before {...}
?只有 CSS 是好的,但是 jQuery 也是好的。