防止 ASP.NET 菜单出现在新行中
我有一个页面,其中包含代表各种功能的多行图像按钮。
我想在每行末尾添加一个 Menu
来表示额外的动态可配置操作。
如何使根菜单项出现在同一行中的图像按钮之后 而不是出现在下面的行/行中?我尝试过:
.Menu {display: inline-block;}
但这并没有什么区别......
I've got a page with rows of image buttons representing various functionality.
I'd like to add a Menu
at the end of each row that will represent extra dynamic configurable actions.
How can I make the root menu item appear after the image buttons in the same row
instead of appearing in the row/line below? I tried with:
.Menu {display: inline-block;}
but it doesn't really make any difference....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从未使用过
,但我只是玩了一下。看起来默认情况下它呈现为 html,每个项目都包含在
100% 宽度可能迫使它换行。在设计视图中以声明方式更改样式,在隐藏代码中以编程方式更改样式,或通过样式表覆盖它。
I've never used
<asp:menu>
, but I just played around with one. Looks like it renders as an html<table>
by default, with each item contained in a<td style="white-space:nowrap;width:100%;">
.The 100% width is probably forcing it to a new line. Change the style declaratively in design view, programmatically in the code-behind, or override it via a stylesheet.