From 104260a6c13f999dd19c4883eb7539c84451812c Mon Sep 17 00:00:00 2001 From: Dimo Dimov <961014+dimodi@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:37:33 +0200 Subject: [PATCH 1/2] kb(grid): Fix percent example and polish explanation --- .../grid-adjust-height-with-browser.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/knowledge-base/grid-adjust-height-with-browser.md b/knowledge-base/grid-adjust-height-with-browser.md index b101ec898a..3695ceea0d 100644 --- a/knowledge-base/grid-adjust-height-with-browser.md +++ b/knowledge-base/grid-adjust-height-with-browser.md @@ -60,13 +60,19 @@ The following sections demonstrate different ways to make a Grid resize vertical Use percentage heights to define dimensions as a portion of the parent element. -When setting a `height` in percent, keep in mind the following rule: an element with a percentage `height` requires its parent to have an explicit height. The rule applies recursively until a fixed height is reached, or until the `` element is reached. +When setting a `height` in percent, keep in mind the following rule: an element with a percentage `height` requires its parent to have an explicit height in any absolute or relative CSS unit. The rule applies recursively until a fixed height is reached (in absolute units), or until the `` element is reached. >caption Set Grid Height in percent ````RAZOR