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.
我试图制作像这张照片一样的悬停风格
想在悬停时增加相应的 li 高度和样式。有什么想法吗?
只定义悬停在锚点上而不是悬停在列表上
改变
.nav li:hover > a{}
至
.nav li a:hover{}
样式中的a标签li如下:
a
li
a:hover{line-height:100px}
或者像这样尝试
nav li:hover ul{ line-height:70px }