如何更改文本的位置"表格中没有可用的数据"在数据表?

时间:2015-06-02 07:42:47

标签: javascript jquery css datatable jquery-datatables

我需要更改来自数据表的文本的位置。有可能吗?

当表中没有数据时,来自数据表的文本为"表中没有可用数据,默认情况下其位置是左对齐的。 现在我需要将该文本与表格中心对齐。

我使用的是jquery数据表的1.9.4版本。

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:5)

试试这个:

在你的CSS中使用这个类以正确的方式定位它。

  

“td.dataTables_empty”

答案 1 :(得分:3)

添加以下样式可以使文本对齐

table.dataTable td.dataTables_empty {
    text-align: center;    
}