Auto Column width?
Auto Column width?
tevinodt
Posts: 4Questions: 2Answers: 0
Hi, is there a way to have these heavy text columns present in closer to a paragraph form?
Or to be able to adjust these column widths individually?
My images aren't hosted to be able to post one.
This discussion has been closed.
Answers
Hi,
"Hi, is there a way to have these heavy text columns present in closer to a paragraph form?"
Normally large texts are displayed in paragraph format. Be sure not to add "nowrap" to the table class.
"Or to be able to adjust these column widths individually?"
$('#example').dataTable( {
"columnDefs": [
{ "width": "20%", "targets": 0 }
]
} );
The "target" parameter indicates the target column.
I hope this helps!
And in what CSS would that class be featured in?