呈现 HTML/ASP.NET 时按钮会换行
我正在使用 ASP.NET。我有一个 html 表格。其中一个表格单元格 (td) 有两个按钮。就在最近,当它被渲染时,它正在包装按钮。谁能告诉我为什么会发生这种情况?
I am using ASP.NET. I have an html table. One of the table cells (td) has two buttons. Just recently, when it is being rendered it is wrapping the buttons. Can anyone tell me why this is happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
表格单元格比按钮的组合宽度窄。
在该单元格上尝试:
。
The table cell is narrower that the combined width of the buttons.
Try:
<td nowrap>
on that cell.尝试这个 CSS:
另外,如果您想添加一些间距,请确保删除按钮之间任何不必要的空白并将其替换为
。
Try this CSS:
Also, make sure you remove any unnecessary white space between the buttons and replace it with
if you wish to add some spacing.