From 3d3ee6f06c2076851e83075bdcd7b3685971a611 Mon Sep 17 00:00:00 2001 From: HariiHe <71579063+HariiHe@users.noreply.github.com> Date: Mon, 25 Jul 2022 05:21:54 -0700 Subject: [PATCH] Fix typo in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2ad8443..0baf312 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1" > -

In terms of use, Simple Grid is basically just like every other grid. Starting out, you need to wrap your grid in a div class named grid. If you want a 20px padding around your grid, add the class grid-pad to the div wrapper. Next, all you have to do is decide what size you want your grid to be and add the appropiate classes. For example, if you want a grid with a left sidebar and main content area you would do: +

In terms of use, Simple Grid is basically just like every other grid. Starting out, you need to wrap your grid in a div class named grid. If you want a 20px padding around your grid, add the class grid-pad to the div wrapper. Next, all you have to do is decide what size you want your grid to be and add the appropriate classes. For example, if you want a grid with a left sidebar and main content area you would do:

 <div class="grid">
   <div class="col-3-12">
@@ -55,7 +55,7 @@ The first column of content in your grid will always be floated left. If you wou
   </div>
 </div>
 
-To hide a element (column, div, a, etc.) on mobile and tablets you can add the class hide-on-mobile to it. +To hide an element (column, div, a, etc.) on mobile and tablets you can add the class hide-on-mobile to it.

Preview