mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
1.6 KiB
1.6 KiB
Grid-gutter
The grid-gutter style sets the size of the gutter in the grid layout.
That is, it sets the space between adjacent cells in the grid.
Gutter is only applied between the edges of cells. No spacing is added between the edges of cells and the edges of the container.
!!! note
This style only affects widgets with `layout: grid`.
Syntax
grid-gutter: <SCALAR> [<SCALAR>];
If only one scalar is supplied, it sets the horizontal and vertical gutter. If two scalars are supplied, they set the vertical and horizontal gutters, respectively.
--8<-- "docs/snippets/scalar_syntax.md"
Example
The example below employs a common trick to apply visually consistent spacing around all grid cells.
=== "Output"
```{.textual path="docs/examples/styles/grid_gutter.py"}
```
=== "grid_gutter.py"
```py
--8<-- "docs/examples/styles/grid_gutter.py"
```
=== "grid_gutter.css"
```css
--8<-- "docs/examples/styles/grid_gutter.css"
```
1. We set the horizontal gutter to be double the vertical gutter because terminal cells are typically two times taller than they are wide. Thus, the result shows visually consistent spacing around grid cells.
CSS
/* Set vertical and horizontal gutters to be the same */
grid-gutter: 5%;
/* Set vertical and horizontal gutters separately */
grid-gutter: 1 2;
Python
Vertical and horizontal gutters correspond to different Python properties, so they must be set separately:
widget.styles.grid_gutter_vertical = "1"
widget.styles.grid_gutter_horizontal = "2"