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.
这是我的页面: http ://www.clouderize.it/michele/category/uncategorized/contattaci/ 问题出在我的菜单上。如果我将鼠标悬停在子菜单元素(如 michelepierri.it)上,则会触发父亲:悬停事件,并且父亲元素会更改其背景。
我不希望发生这种情况,所以我希望只有当我将鼠标放在菜单元素上时才会在菜单项上触发悬停事件。
我在我的 CSS 上做错了什么?谢谢。
解决了,我换
li.backgroundNormal{
至
li.backgroundNormal > a:hover{
“悬停” CSS 伪状态在 DOM 树中冒泡。因此,如果你悬停一个元素,你会自动悬停它的所有祖先。