scrollX in CSS Grid question
scrollX in CSS Grid question

If I have my DataTable in a CSS Grid area that has 'auto' width, I can't get DataTables to show the scrollbar properly. If I make the width a fixed size then it works fine.
Can someone take a look at my jsfiddle and advise if possible. I am new to DataTables so any comments are appreciated. Thanks!
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Use:
calc(100% - 100px)
for your CSS to be able to give a relative width, minus the absolute width of your first column: http://jsfiddle.net/756bgax0/Allan