SlickGrid 中列标题的文本如何居中?

发布于 2024-11-15 00:27:41 字数 51 浏览 2 评论 0 原文

有什么方法可以使列标题中的文本居中 有什么想法如何执行此操作或必须更改哪些 ccs 吗?

there any way to center text in a column header
Any ideas how to do this or what ccs must be changed ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

兮子 2024-11-22 00:27:41

在你的 css 中添加以下样式:

.slick-header-column {
   text-align: center;
}

Add the following style in your css:

.slick-header-column {
   text-align: center;
}
薄荷→糖丶微凉 2024-11-22 00:27:41

如果您不希望所有列标题以相同的方式对齐,您还可以通过 headerCssClass 属性定义单独的 css 类/SlickGrid/wiki/Column-Options" rel="nofollow">列定义,例如:

var columns = [
    {id: "title", name: "Title", field: "title", headerCssClass: 'text'},
    {id: "price", name: "Price", field: "price", headerCssClass: 'currency'}
];

和:

.slick-header-column.currency {
    text-align: center;
}

If you don't want all column headers to be aligned the same way, you can also define individual css classes via the headerCssClass attribute of a column definition, like:

var columns = [
    {id: "title", name: "Title", field: "title", headerCssClass: 'text'},
    {id: "price", name: "Price", field: "price", headerCssClass: 'currency'}
];

and:

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