I am trying to achieve the following layout with flexbox.
┌─┬─────┐
│A│ │
├─┤ C │
│B│ │
└─┴─────┘
Is it possible to do so without wrapping A and B into a wrapper?
I am trying to achieve the following layout with flexbox.
┌─┬─────┐
│A│ │
├─┤ C │
│B│ │
└─┴─────┘
Is it possible to do so without wrapping A and B into a wrapper?
Yes, it's possible. Take in account that in this example the main container has a fixed width and height.
unfortunately, there is no fixed height, so I ended up with doing things old way — via tables, like this
HTML:
CSS: