mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
13 lines
378 B
Python
13 lines
378 B
Python
from textual.app import App
|
|
from textual.widgets import Label
|
|
|
|
|
|
class ContentAlignApp(App):
|
|
def compose(self):
|
|
yield Label("With [i]content-align[/] you can...", id="box1")
|
|
yield Label("...[b]Easily align content[/]...", id="box2")
|
|
yield Label("...Horizontally [i]and[/] vertically!", id="box3")
|
|
|
|
|
|
app = ContentAlignApp(css_path="content_align.css")
|