菜单项定位问题
我正在尝试创建一个标题菜单。 请在此处查看我的代码: http://jsfiddle.net/kc2cc/ 。
我的意图是,如果用户单击菜单项(徽标、位置、事件或组),则单击的元素将向下移动 1px,直到单击为止,它会返回到原始位置。 在 Chrome 15 中,一切正常,但在 Firefox 和 IE 中,如果我单击元素,所有元素都会向下移动。
原因是什么?我该如何解决? 谢谢
I'm trying to create a header menu.
Please see my code here: http://jsfiddle.net/kc2cc/ .
My intention was that, if user clicks on of the menu items (logo, places, events or groups) then the clicked element will move down 1px, and until click it comes back to original position.
In Chrome 15 everything works fine, but in Firefox and IE if I click on element all the elements move down.
What is the reason, and how can I fix it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我真的不知道为什么,但似乎是
ul#navigation li
的默认值baseline
导致了问题。将其更改为middle
或其他任何内容都可以解决该问题。I don't really know why but it seems it's the default value
baseline
forul#navigation li
which causes the problem. Change it formiddle
or anything else will solve it.设置
vertical-align: top
为http://jsfiddle.net/kc2cc/13/
set
vertical-align: top
for<li>
http://jsfiddle.net/kc2cc/13/