我发誓我已经这样做了一百次,但是对于我的生活,我无法弄清楚为什么我的:before
伪元素的背景显示在文本后面而不是锚点的背景后面。想法?
.button {
background: tomato;
padding: 10px 30px;
margin: 20px 0;
display: inline-block;
}
.button:hover {
margin: 18px 0 22px 2px;
position: relative;
z-index: 2;
}
.button:hover:after {
position: absolute;
background: red;
top:-2px;
left: -2px;
content: "";
z-index: -10;
width: 100%;
height: 100%;
}
<a class="button" href="#">Meow</a>
示例:http: //jsfiddle.net/cfree/hnKLr/