mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
23 lines
313 B
CSS
23 lines
313 B
CSS
#box1 {
|
|
content-align: left top;
|
|
background: red;
|
|
}
|
|
|
|
#box2 {
|
|
content-align-horizontal: center;
|
|
content-align-vertical: middle;
|
|
background: green;
|
|
}
|
|
|
|
#box3 {
|
|
content-align: right bottom;
|
|
background: blue;
|
|
}
|
|
|
|
Label {
|
|
width: 100%;
|
|
height: 1fr;
|
|
padding: 1;
|
|
color: white;
|
|
}
|