防止 ASP.NET 菜单出现在新行中

发布于 2024-11-10 18:27:00 字数 212 浏览 1 评论 0原文

我有一个页面,其中包含代表各种功能的多行图像按钮。
我想在每行末尾添加一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各自安好 2024-11-17 18:27:00

我从未使用过 ,但我只是玩了一下。看起来默认情况下它呈现为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文