# Line

Draws a horizontal line to separate fields

****

- Read more: <https://getkirby.com/docs/guide/blueprints/fields>
- Source: <https://github.com/getkirby/kirby/tree/5.5.3/config/fields/line.php>

****

Sometimes it can be helpful to visually seperate the form into different sections. The line field is perfect here. It will draw a horizontal rule with enough white space around it to separate sets of fields nicely.

<figure class="image"><a data-lightbox href="https://assets.getkirby.com/media/pages/docs/reference/panel/fields/line/0286fc0728-1717846665/line.png?width=1416&amp;height=192&amp;enlarge=0"><img alt="" class="rounded" height="125" loading="lazy" sizes="auto" src="https://assets.getkirby.com/media/pages/docs/reference/panel/fields/line/0286fc0728-1717846665/line.png?width=924&amp;height=125&amp;enlarge=0" srcset="https://assets.getkirby.com/media/pages/docs/reference/panel/fields/line/0286fc0728-1717846665/line.png?width=462&amp;height=63&amp;enlarge=0 462w, https://assets.getkirby.com/media/pages/docs/reference/panel/fields/line/0286fc0728-1717846665/line.png?width=690&amp;height=94&amp;enlarge=0 690w, https://assets.getkirby.com/media/pages/docs/reference/panel/fields/line/0286fc0728-1717846665/line.png?width=924&amp;height=125&amp;enlarge=0 924w, https://assets.getkirby.com/media/pages/docs/reference/panel/fields/line/0286fc0728-1717846665/line.png?width=1380&amp;height=187&amp;enlarge=0 1380w, https://assets.getkirby.com/media/pages/docs/reference/panel/fields/line/0286fc0728-1717846665/line.png?width=1416&amp;height=192&amp;enlarge=0 1848w" width="924"></a></figure>

## Example

```yaml
fields:
  line:
    type: line
```

If you want to add multiple lines to your form, make sure that the names for each field are unique:

```yaml
fields:

  …

  lineA:
    type: line

  …

  lineB:
    type: line

  …

  lineC:
    type: line
```