1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
use margin=2;
conflict_report=full;
row [width=230, content.x=justify] {
col {
box a:aaa [height=20];
box b:bbb [height=20];
box: ss[height=30, width=10];
box;
box;
}
col [content.y=justify,
top=prev@top,
bottom=prev@bottom
] {
box a2:aaa;
box b2:bbb [ymiddle=b@middle];
box c: [height=10];
box c2: [height=10];
}
box:xxx[middle=a@top];
col {
box ;
box [middle=c@middle];
box;
}
col {
box [mbottom=next@top];
box [middle=c@middle];
box;
}
col {
box [bottom=next@top];
box [middle=c@middle, height=10];
box [height=10];
}
}
|