--- title: --- The `` element allows you to place content in a named slot without wrapping it in a container DOM element. This keeps the flow layout of your document intact. In the example notice how we applied a flex layout with a gap of `1em` to the box. ```svelte
No header was provided

Some content between header and footer

``` However, the content in the footer is not spaced out according to this rhythm because wrapping it in a div created a new flow layout. We can solve this by changing `
` in the `App` component. Replace the `
` with ``: ```svelte

All rights reserved.

Copyright (c) 2019 Svelte Industries

```