Layer¶
The layer
style defines the layer a widget belongs to.
Syntax¶
layer: <name>;
The layer
style accepts a <name>
that defines the layer this widget belongs to.
This <name>
must correspond to a <name>
that has been defined in a layers
style by an ancestor of this widget.
More information on layers can be found in the guide.
Warning
Using a <name>
that hasn't been defined in a layers
declaration of an ancestor of this widget has no effect.
Example¶
In the example below, #box1
is yielded before #box2
.
However, since #box1
is on the higher layer, it is drawn on top of #box2
.
from textual.app import App, ComposeResult
from textual.widgets import Static
class LayersExample(App):
CSS_PATH = "layers.tcss"
def compose(self) -> ComposeResult:
yield Static("box1 (layer = above)", id="box1")
yield Static("box2 (layer = below)", id="box2")
if __name__ == "__main__":
app = LayersExample()
app.run()
CSS¶
Python¶
See also¶
- The layout guide section on layers.
layers
to define an ordered set of layers.