md-table - How to update the column width

后端 未结 18 2166
离开以前
离开以前 2020-12-04 10:58

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

18条回答
  •  南笙
    南笙 (楼主)
    2020-12-04 11:14

    You can set the .mat-cell class to flex: 0 0 200px; instead of flex: 1 along with the nth-child.

    .mat-cell:nth-child(2), .mat-header-cell:nth-child(2) {
        flex: 0 0 200px;
    }
    

提交回复
热议问题