TD column width value not working with fixed table-layout

后端 未结 7 1426
北恋
北恋 2021-01-17 18:52

I have following table structure:

col1 col
7条回答
  •  清歌不尽
    2021-01-17 19:10

    suggest such an option

    HTML

    col1 col2 col3 col4 col5 col6 col7 col8

    CSS

    .tableStyle{
    table-layout:fixed;
    margin: 0 auto; width: 960px;
      background: #ffffd;
    }
    td:nth-child(1n) {
      width: 20px;
      background: #876342;
    }
    td:nth-child(3n+1) {
      width: 100px;
    }
    

    demo

提交回复
热议问题