我發誓我已經做了這一百次,但對於我的生活,我不明白爲什麼我的:before
僞元素的背景是在文字後面顯示,但不在主播背景的後面。思考?::負Z指數僞元素之前不顯示在父母后面
.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/
這在Chrome的新版本中變得更加清晰,其中:: before和:: after是它們所連接的元素內的節點。 – cfree