Responsive table by columns

后端 未结 5 797
花落未央
花落未央 2021-01-02 06:41

I have a table with four columns and I need to have a responsive table where each column will be below the other but I don\'t know how to do it. I hope that there is some an

5条回答
  •  既然无缘
    2021-01-02 06:53

    it's not very nice, but you can try to make tr tags columns and td tag rows

    tr{
        display: inline;
        float:left;
    }
    
    td{
       display: block;
    }
    

提交回复
热议问题