According to this article at W3 Schools, one can create a basic table in HTML like this:
row 1, c
-
2020-12-14 06:28
In modern browsers you can achieve this by redefining the TR and TD tags behavior in CSS. Given the HTML in your question attach the next CSS style:
table {
display: table;
}
table tr {
display: table-cell;
}
table tr td {
display: block;
}
| row 1, cell 1 |
row 2, cell 1 |
| row 1, cell 2 |
row 2, cell 2 |
|