Answers for "center data in table cell html datatables"

CSS
1

datatables columns align

dt-right - Right align text in the header and body.
dt-head-right - Right align text in the header only
dt-body-right - Right align text in the body only.

$('#myTable').DataTable( {
  columnDefs: [
    {
        targets: -1,
        className: 'dt-body-right'
    }
  ]
} );
Posted by: Guest on June-06-2020
0

table td data in middle

vertical-align: middle
Posted by: Guest on November-26-2020

Browse Popular Code Answers by Language