Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个按钮,里面有一个 span 类。跨度类(向左浮动)需要在“+”图标的右侧有一个边框。
我遇到的问题是,当我将鼠标悬停在按钮上时,跨度边框颜色不会从绿色变为红色(这就是我所追求的)。
请看这个小提琴:
http://jsfiddle.net/bAv7C/9/
它似乎没有阅读:
.plus:hover{ border-right: 2px solid red; }
谢谢。
您需要改为应用样式button:hover .plus。我已经叉了你小提琴。
button:hover .plus