JavaScript 下拉菜单移动链接
当我尝试创建 javascript 下拉列表时遇到这个问题。它一直在我的“价格”链接上移动,但我去掉了 UL 中的所有填充和边距。建议?
I got this problem when Im trying to create a javascript dropdown. It keeps moving over my "prices" link but I took off all the padding and margins in the UL. Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为正在显示的隐藏 ul 由于其自身的宽度而加宽了外部 ul。您需要将隐藏的 ul 定位为绝对。
看看:
http://jsfiddle.net/fSXHj/1/
This is because your hidden ul that is being displayed is widening the outer ul due to its own width. You need to position your hidden ul as absolute.
Check it out:
http://jsfiddle.net/fSXHj/1/