I'm writing a CSS table (via display: table;) and I need row with 3 columns and the next row to have 100% width and so on. Result should seem like this:
+---+---+---+
| | | |
+---+---+---+
| |
+-----------+
| | | |
+---+---+---+
| |
+-----------+
I'm trying to do that with colspan but I haven't found how to do that. Is it even possible ?