Headers do not align with columns
Headers do not align with columns
cusciproject
Posts: 1Questions: 1Answers: 0
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
autoWidth
setfalse
. You will probably want to addstyle="width:100%"
to thetable
tag as shown in this example. Updated test case:https://live.datatables.net/seviqabo/4/edit
Additional notes:
You have the Bootstrap
table-responsive
for responsive tables which competes with thescrollX
andresponsive
options you have set. In factscrollX
andresponsive
compete with each other. You should choose and only use on of the three options so you don't have conflicting or unexpected behavior.Kevin