Change orientation to vertical, table rows HTML + CSS

后端 未结 5 659
鱼传尺愫
鱼传尺愫 2020-12-19 09:57

I have this table:



        
      
      
      
5条回答
  •  余生分开走
    2020-12-19 10:54

    If you are forced only to use CSS you can play with rotate :)

    #table {
        transform:rotate(90deg);  
    }
    #table th, #table td{
        transform:rotate(-90deg);
    }
    td {
      height: 50px;
    }
row1aaaa
row1aaaa
row2bbbbbbbbbbbb
row3bbbbbbbbbbbb

提交回复
热议问题