diff --git a/css-values-3/Overview.bs b/css-values-3/Overview.bs
index f34559d199e6..c135c112d533 100644
--- a/css-values-3/Overview.bs
+++ b/css-values-3/Overview.bs
@@ -1005,7 +1005,9 @@ Relative Lengths
''vw''
| 1% of viewport's width
|
''vh''
- | 1% of viewport's height
+ | 1% of viewport's height when user agent chrome is minimized
+ |
''vhc''
+ | 1% of viewport's height when user agent chrome is maximized
|
''vmin''
| 1% of viewport's smaller dimension
|
''vmax''
@@ -1178,7 +1180,13 @@ Viewport-percentage Lengths: the ''vw'', ''vh'', ''vmin'', ''vmax'' units
vh unit
- Equal to 1% of the height of the initial containing block.
+ When user agent chrome does not change size, it is equal to 1% of the height of the initial containing block.
+ When user agent chrome does change size, it is equal to 1% of the height of the initial containing block with the user agent chrome at its smallest size.
+
+ vhc unit
+
+ When user agent chrome does not change size, it is equal to 1% of the height of the initial containing block.
+ When user agent chrome does change size, it is equal to 1% of the height of the initial containing block with the user agent chrome at its largest size.
vmin unit
@@ -1188,6 +1196,10 @@ Viewport-percentage Lengths: the ''vw'', ''vh'', ''vmin'', ''vmax'' units
Equal to the larger of ''vw'' or ''vh''.
+
+ Note: The vh and vhc units are the same size when the user agent chrome does not change size
+ (for example, desktop user agents generally do not change chrome size, so vh and vhc will be the same in these situations).
+ For user agent whose chrome does change size, vhc is the smaller of the two units.
css/css-regions/interactivity/resizing/regions-resizing-003.html
|