is it possible to create master-detail-states layout in css?
I need 3 placeholders:
+---------------+-------+
| A | B |
+-----------------------+
| C |
+-----------------------+
Block A – is the list of orders.
Block B – is the list of states of selected order
Block C – is the list of details of selected order
Each block will have own vertical scrollbar, but whole page can’t be scrolled – it means, that each block is always on own place, even if I have 1000 orders, 1000 details and 1000 states.
is it possible to do it with css?
It’s actually a pretty straight-forward CSS layout:
DEMO HERE