From bd4dad610cae211e3e6930ca9230ef4395a2bb66 Mon Sep 17 00:00:00 2001 From: Kevin Babbitt Date: Wed, 8 Jan 2025 14:44:32 -0800 Subject: [PATCH] [css-gaps-1][editorial] Fix typos and correct markup in examples --- css-gaps-1/Overview.bs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/css-gaps-1/Overview.bs b/css-gaps-1/Overview.bs index 6b21486e7394..c9173810d1aa 100644 --- a/css-gaps-1/Overview.bs +++ b/css-gaps-1/Overview.bs @@ -283,7 +283,7 @@ Breaking gap decorations into segments: The 'column-rule-break', 'row-rule-break
 			.break-intersection {
 				gap-rule-break: intersection;
-				grap-rule-outset: 0px;
+				gap-rule-outset: 0px;
 			}
 		
@@ -296,7 +296,7 @@ Breaking gap decorations into segments: The 'column-rule-break', 'row-rule-break
 			.break-spanning-item {
 				gap-rule-break: spanning-item;
-				grap-rule-outset: 0px;
+				gap-rule-outset: 0px;
 			}
 		
@@ -310,7 +310,7 @@ Breaking gap decorations into segments: The 'column-rule-break', 'row-rule-break
 			.break-none {
 				gap-rule-break: none;
-				grap-rule-outset: 0px;
+				gap-rule-outset: 0px;
 			}
 		
@@ -354,6 +354,7 @@ Adjusting gap decoration endpoints: The 'column-rule-outset', 'row-rule-outset',
 			.outset-0px {
 				column-rule-outset: 0px;
+				column-rule-break: intersection;
 			}
 		
@@ -366,6 +367,7 @@ Adjusting gap decoration endpoints: The 'column-rule-outset', 'row-rule-outset',
 			.outset-5px {
 				column-rule-outset: 5px;
+				column-rule-break: intersection;
 			}
 		
@@ -379,6 +381,7 @@ Adjusting gap decoration endpoints: The 'column-rule-outset', 'row-rule-outset',
 			.outset-50percent {
 				column-rule-outset: 50%;
+				column-rule-break: intersection;
 			}
 		
@@ -397,6 +400,7 @@ Adjusting gap decoration endpoints: The 'column-rule-outset', 'row-rule-outset',
 			.outset-negative-5px {
 				column-rule-outset: -5px;
+				column-rule-break: intersection;
 			}