I have started using the md-table for my project, and I want fixed column width. Currently all columns width are divided into equal size.
Where can I get the documen
I just used:
th:nth-child(4) { width: 10%; }
Replace 4 with the position of the header that you need to adjust the width for.The examples in the documentation used:
td, th { width: 25%; }
So I just modified it to get what I wanted.