Files
textual/sandbox/align.css
Will McGugan 66ec130726 box model
2022-04-20 14:20:44 +01:00

48 lines
610 B
CSS

Screen {
layout: horizontal;
}
Widget {
margin:1;
}
#thing {
width: auto;
height: 10;
background:magenta;
margin: 1;
padding: 1;
border: solid white;
box-sizing: content-box;
/* border: solid white; */
align-vertical: middle;
}
#thing2 {
width: auto;
height: 10;
/* border: solid white; */
outline: heavy blue;
padding: 1 2;
box-sizing: content-box;
background:green;
align-vertical: middle;
color:white;
}
#thing3 {
width: 20;
height: 10;
background:blue;
align-vertical: bottom;
}