如何防止 JQuery UI 菜单浮动?
我试图让 JQuery 菜单在此页面上单独显示一行:http://www.lastcalc.com/help。 lastcalc.com/help
您可以看到顶部的菜单有两个条目:“入门”和“变量和函数”。问题是,虽然我希望以下文本出现在该菜单下方,但它坚持出现在菜单的右侧!
如果我强行设置 float: none;在 UL 元素 css 中,菜单无法正确呈现。
我怎样才能让它按照我想要的方式运行?
I'm trying to get a JQuery menu to appear on a line of its own on this page: http://www.lastcalc.com/help
You can see the menu at the top with two entries, "Getting Started" and "Variables and Functions". The problem is that while I want the following text to appear below this menu, it insists on appearing to the right of it!
If I forcefully set float: none; in the UL element css, then the menu doesn't render properly.
How can I get this to behave the way I want it to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加
到 .section{}
add
to .section{}
应该这样做:
浮动元素之后的元素将围绕它流动。为了避免这种情况,请使用clear属性。 clear 属性指定元素的哪一侧不允许有其他浮动元素。
This should do it:
Elements after the floating element will flow around it. To avoid this, use the clear property. The clear property specifies which sides of an element other floating elements are not allowed.