From 9ff747f6460424b62b48282e6914a7d93f27609a Mon Sep 17 00:00:00 2001 From: Vincent Smedinga Date: Mon, 22 Jul 2024 17:46:30 +0200 Subject: [PATCH] Finetune documentation --- packages/css/src/components/margin/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/css/src/components/margin/README.md b/packages/css/src/components/margin/README.md index 805f8cb7be..d42d7e3ef0 100644 --- a/packages/css/src/components/margin/README.md +++ b/packages/css/src/components/margin/README.md @@ -11,5 +11,5 @@ The five sizes of [Component Space](/docs/foundation-design-tokens-space--docs) - Use this utility class to vertically separate one element from the next. - It can be used on any element and sets the `margin-block-end` CSS property. This declaration is marked with the `!important` flag to ensure it overrides any other margins. - Elements’ top and bottom margins are sometimes collapsed into a single margin. Consult [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing) for details. -- To add equal margins between elements that are rendered by a loop, wrap them in a [Column](/docs/components-layout-column--docs) component instead. - This prevents having to treat the last sibling differently by not adding the margin to it. +- To add equal margins between elements, wrap them in a [Column](/docs/components-layout-column--docs) component instead. + This can help in loops: it prevents having to treat the last sibling differently by not adding the margin to it.