From d5bd11e45b039aa128ba7943ba11ede5f255e9f3 Mon Sep 17 00:00:00 2001 From: djy0 Date: Fri, 5 Apr 2019 00:31:23 +0800 Subject: [PATCH 1/3] Format: add indentation added a little indentation --- css-grid-1/Overview.bs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/css-grid-1/Overview.bs b/css-grid-1/Overview.bs index 07c1d84a5eb..dc05687d513 100644 --- a/css-grid-1/Overview.bs +++ b/css-grid-1/Overview.bs @@ -669,12 +669,12 @@ Grid Areas
 			/* using the template syntax */
 			#grid  {
-			display: grid;
-			grid-template-areas: ". a"
-			                     "b a"
-			                     ". a";
-			grid-template-columns: 150px 1fr;
-			grid-template-rows: 50px 1fr 50px;
+				display: grid;
+				grid-template-areas: ". a"
+						     "b a"
+						     ". a";
+				grid-template-columns: 150px 1fr;
+				grid-template-rows: 50px 1fr 50px;
 			}
 
 			#item1 { grid-area: a }

From bb163246e1900ed9a277a82ea170e0a724a0b1da Mon Sep 17 00:00:00 2001
From: Eric Willigers 
Date: Thu, 11 Apr 2019 00:21:59 -0400
Subject: [PATCH 2/3] Use 2 spaces for indentation in example CSS.

---
 css-grid-1/Overview.bs | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/css-grid-1/Overview.bs b/css-grid-1/Overview.bs
index dc05687d513..bbabd11a46a 100644
--- a/css-grid-1/Overview.bs
+++ b/css-grid-1/Overview.bs
@@ -669,12 +669,12 @@ Grid Areas
 		
 			/* using the template syntax */
 			#grid  {
-				display: grid;
-				grid-template-areas: ". a"
-						     "b a"
-						     ". a";
-				grid-template-columns: 150px 1fr;
-				grid-template-rows: 50px 1fr 50px;
+			  display: grid;
+			  grid-template-areas: ". a"
+			                       "b a"
+			                       ". a";
+			  grid-template-columns: 150px 1fr;
+			  grid-template-rows: 50px 1fr 50px;
 			}
 
 			#item1 { grid-area: a }

From 8fa47656b4c5b5cbd8ab899dadfc88ae8bda0ee2 Mon Sep 17 00:00:00 2001
From: Eric Willigers 
Date: Thu, 11 Apr 2019 00:24:17 -0400
Subject: [PATCH 3/3] Use 2 spaces for indentation in example HTML

---
 css-grid-1/Overview.bs | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/css-grid-1/Overview.bs b/css-grid-1/Overview.bs
index bbabd11a46a..297cab84698 100644
--- a/css-grid-1/Overview.bs
+++ b/css-grid-1/Overview.bs
@@ -985,22 +985,22 @@ Grid Items
 		
 		<div style="display: grid">
 
-		    <!-- grid item: block child -->
-		    <div id="item1">block</div>
-
-		    <!-- grid item: floated element; floating is ignored -->
-		    <div id="item2" style="float: left;">float</div>
-
-		    <!-- grid item: anonymous block box around inline content -->
-		    anonymous item 3
-
-		    <!-- grid item: inline child -->
-		    <span>
-		        item 4
-		        <!-- grid items do not split around blocks -->
-		        <q style="display: block" id=not-an-item>item 4</q>
-		        item 4
-		    </span>
+		  <!-- grid item: block child -->
+		  <div id="item1">block</div>
+
+		  <!-- grid item: floated element; floating is ignored -->
+		  <div id="item2" style="float: left;">float</div>
+
+		  <!-- grid item: anonymous block box around inline content -->
+		  anonymous item 3
+
+		  <!-- grid item: inline child -->
+		  <span>
+		    item 4
+		    <!-- grid items do not split around blocks -->
+		    <q style="display: block" id=not-an-item>item 4</q>
+		    item 4
+		  </span>
 		</div>