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
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; }