Headers do not align with columns
Headers do not align with columns
https://live.datatables.net/seviqabo/1/edit
Headers do not align with columns when page is resized
This discussion has been closed.
https://live.datatables.net/seviqabo/1/edit
Headers do not align with columns when page is resized
Answers
Looks like the main problem is you have
autoWidthsetfalse. You will probably want to addstyle="width:100%"to thetabletag as shown in this example. Updated test case:https://live.datatables.net/seviqabo/4/edit
Additional notes:
You have the Bootstrap
table-responsivefor responsive tables which competes with thescrollXandresponsiveoptions you have set. In factscrollXandresponsivecompete with each other. You should choose and only use on of the three options so you don't have conflicting or unexpected behavior.Kevin