如何在 GridView 中的 FooterTemplate 单元格内对齐文本
如何在 GridView 中的 FooterTemplate 单元格内对齐文本
我尝试了以下操作,但文本仍然居中(有一个父中心标签):
<FooterTemplate>
<span style="size:100%; padding:0; text-align: right">Total: </span>
</FooterTemplate>
How to align text within a FooterTemplate cell in a GridView
I tried the following but the text is still centered (there is a parent center tag):
<FooterTemplate>
<span style="size:100%; padding:0; text-align: right">Total: </span>
</FooterTemplate>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在模板的父列中尝试设置
FooterStyle-HorizontalAlign="Right"
In the parent column of the template try setting
FooterStyle-HorizontalAlign="Right"
也许可以
如你所愿。
Maybe
works as you want.
使用 display:block 替换 size:100% (据我所知,它不存在)
Use display:block which replaces size:100% (which doesn't exist, AFAIK)
网格视图最终会呈现为表格本身,因此,使用基本的 CSS 选择器,我们可以解决问题,我使用以下内容来解决我面临的相同问题,希望它可以帮助任何其他寻找此线程的人
希望有帮助。
The Grid-view would in the end be rendered as a table itself hence, using basic CSS selectors, we can solve the problem, I used the following to fix the same problem that I was facing, hope it helps anyone else looking for this thread
Hope that helped.