Files
textual/docs/examples/styles/display.py
Will McGugan 7ba36c1146 docs
2022-07-30 13:03:49 +01:00

25 lines
479 B
Python

from textual.app import App
from textual.widget import Widget
class WidthApp(App):
CSS = """
Screen > Widget {
height: 5;
background: blue;
color: white;
border: heavy white;
}
Widget.hidden {
display: none;
}
"""
def compose(self):
yield Widget(id="widget1")
yield Widget(id="widget2", classes="hidden")
yield Widget(id="widget3")
app = WidthApp()