Html.Grid 右对齐列中的数据
在 Html.Grid 中,我们如何确保列中的数据(例如货币金额)正确对齐?
谢谢。
In an Html.Grid, how can we ensure that data in the column (e.g. currency amounts) gets right aligned?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你是说在 MvcContrib 网格中?
您可以使用类似:
或更简洁的方式,您可以设置一个类:
并在该类上设置适当的样式规则。
You mean in the MvcContrib Grid?
You could use something like:
or more tidily you could set a class:
and set an appropriate style rule on that class.
这对我有用。在网格中 htmlAttributes 为结果表分配一个 id。在此示例中为“gridT”。在 CSS 中为“#gridT”创建一个样式,使第二列的文本左对齐。
第二列“名称”将左对齐。
Here's what worked for me. Within the grids htmlAttributes assign the resulting table an id. In this example "gridT". In the CSS create a style for "#gridT", for the second column to align the text left.
The second column "Name" will be left aligned.