Files
textual/sandbox/will/table_layout.css
Will McGugan c3d2a87211 table layout
2022-08-29 11:18:41 +01:00

24 lines
274 B
CSS

Screen {
layout: table;
table-columns: 2fr 1fr 1fr;
table-rows: 1fr 1fr;
table-gutter: 1 2;
}
Static {
border: solid white;
background: blue 20%;
height: 100%;
width: 100%;
}
#foo {
row-span: 2;
}
#last {
column-span: 3;
margin: 1;
}