我正在尝试在文本块上创建纯 CSS 悬停效果。这是html..
<p class="background-switch">Ok, <span style="color:red;">now that</span> you've done that, hover me next!</p>
和CSS ..
.background-switch {
text-align: center;
padding: 1em;
max-width: 250px;
font-size: 2.2em;
border-radius: 30px;
background-color: pink;
}
.background-switch:hover {
background-color: lightblue;
color: white ;
}
没有标签它可以正常工作..但问题是我需要“现在”的颜色<span>
在<p>
悬停之前为红色,在悬停时为白色。情况并非如此,因为红色在悬停时拒绝变成白色。有没有办法使类属性<span>
也适用于?