如何居中对齐onDemandGrid标题

时间:2017-04-03 19:44:53

标签: javascript html css dgrid center-align

我正在使用dgrid的onDemandGrid,并希望对齐特定的列标题,但不是网格中的所有标题。我将如何完成这项工作?

我的css文件中有以下内容:

.mywidget h3 {
  font-size: 1.2em;
}
.mywidget h3, p {
  margin-top: 0;
}

.dgrid {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    font-size:larger;
}
.dgrid-row-odd {
  background: #F2F5F9;
}
.dgrid-column-A{
  width: 80px;
}
.dgrid-column-B{
  width: 120px;
}
.dgrid-column-C {
  width: 80px;
}
.dgrid-column-D {
  width: 120px;
}
.dgrid-column-E {
  width: 50px;
}
.dgrid-column-F {
  width: 70px;
}

1 个答案:

答案 0 :(得分:0)

这对我有用

.dgrid-header .dgrid-column-B {
  width: 120px;
  text-align:center;
}