目标:使纯CSS中的按钮悬浮效果很好,它将使用::after::before伪元素。查看此jsFiddle示例,以了解我想要达到的目标。

代码:Button将具有某些样式,也为background-color,在此示例中已将其关闭。

.button {
    display: inline-block;
    position: relative;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    /*background-color: white;*/
    text-decoration: none;
    color: black;
}


问题:我想使用background-color,当我启用它时,我看不到伪元素。就像这样,因为这些伪元素具有z-index: -1;,这将它们置于背景之后。当我将z-index更改为01时,文本将不可见。

我不能做的事情:我不能在按钮内添加新元素(例如span),因为这是一个已经在运行的网站,客户决定更改按钮的行为,所以我来了。这个网站上有很多按钮,所以这就是为什么我想找到带有伪元素的解决方案的原因,因为尝试查找每个按钮并进行更改都是不合适的。

最佳答案

如果我很了解您,这就是您要寻找的:



.button {
    display: inline-block;
    position: relative;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    /*background-color: white;*/
    text-decoration: none;
    color: black;
	border:1px solid;
}
a.button:before {
    content: " ";
    display: block;
    z-index: -1;
    position: absolute;
    height: 0%;
    top: 0;
    right: 0;
    left: 0;
    background: #ddd;
	transition: height 0.2s ease;
}

a.button:hover:before {
	height:100%;
}

<a href="#" class="button">TEST</a>

关于html - 与CSS中的文本重叠:: after和:: before,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37965872/

10-09 15:04