如何在 GridView 中的 FooterTemplate 单元格内对齐文本

发布于 2024-07-23 17:10:25 字数 249 浏览 9 评论 0原文

如何在 GridView 中的 FooterTemplate 单元格内对齐文本

我尝试了以下操作,但文本仍然居中(有一个父中心标签):

<FooterTemplate>
    <span style="size:100%; padding:0; text-align: right">Total:&nbsp;</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 技术交流群。

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

发布评论

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

评论(4

美胚控场 2024-07-30 17:10:25

在模板的父列中尝试设置 FooterStyle-Horizo​​ntalAlign="Right"

In the parent column of the template try setting FooterStyle-HorizontalAlign="Right"

作业与我同在 2024-07-30 17:10:25

也许可以

<FooterTemplate>
    <div style="text-align: right;">
        <span>Total: </span>
    </div>
</FooterTemplate>

如你所愿。

Maybe

<FooterTemplate>
    <div style="text-align: right;">
        <span>Total: </span>
    </div>
</FooterTemplate>

works as you want.

说谎友 2024-07-30 17:10:25

使用 display:block 替换 size:100% (据我所知,它不存在)

<FooterTemplate>
  <span style="display:block; padding:0; text-align: right">Total: </span>
</FooterTemplate>

Use display:block which replaces size:100% (which doesn't exist, AFAIK)

<FooterTemplate>
  <span style="display:block; padding:0; text-align: right">Total: </span>
</FooterTemplate>
雄赳赳气昂昂 2024-07-30 17:10:25

网格视图最终会呈现为表格本身,因此,使用基本的 CSS 选择器,我们可以解决问题,我使用以下内容来解决我面临的相同问题,希望它可以帮助任何其他寻找此线程的人

    tr:last-of-type td {
        align-content: center;
        vertical-align: middle;
        text-align: center;
    }

希望有帮助。

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

    tr:last-of-type td {
        align-content: center;
        vertical-align: middle;
        text-align: center;
    }

Hope that helped.

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