File size: 1,086 Bytes
5b76e0f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | # Layers
The `layers` property allows you to define an ordered set of layers.
These `layers` can later be referenced using the `layer` property.
Layers control the order in which widgets are painted on screen.
More information on layers can be found in the [guide](../guide/layout.md#layers).
## Syntax
```
layers: <STRING> ...;
```
## 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`.
[//]: # (NOTE: the example below also appears in the guide and 'layer.md'.)
=== "Output"
```{.textual path="docs/examples/guide/layout/layers.py"}
```
=== "layers.py"
```python
--8<-- "docs/examples/guide/layout/layers.py"
```
=== "layers.css"
```sass hl_lines="3 15 19"
--8<-- "docs/examples/guide/layout/layers.css"
```
## CSS
```sass
/* Bottom layer is called 'below', layer above it is called 'above' */
layers: below above;
```
## Python
```python
# Bottom layer is called 'below', layer above it is called 'above'
widget.layers = ("below", "above")
```
|