diff --git a/docs/pages/components/layout.md b/docs/pages/components/layout.md index eff9f0c64..ec159d343 100644 --- a/docs/pages/components/layout.md +++ b/docs/pages/components/layout.md @@ -45,9 +45,16 @@ The layout component _does not_ apply spacing for you. You can apply the appropr TODO - add example here -:::warning -When using ``, make sure to zero out all paddings and margins on `` and ``, otherwise you may see unexpected gaps. -::: +When using ``, make sure to zero out all paddings and margins on `` and ``, otherwise you may see unexpected gaps. The following styles are highly recommended when using ``. + +```css +html, +body { + min-height: 100%; + padding: 0; + margin: 0; +} +``` ## Skip To Content