From a0e9e1f89b0b9210ad368c8f4667359a3585cb36 Mon Sep 17 00:00:00 2001 From: Kyle Jackson <43935897+kylewjackson@users.noreply.github.com> Date: Sat, 3 Nov 2018 21:35:41 -0500 Subject: [PATCH] small grammatical changes (#20935) --- guide/english/css/padding/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/css/padding/index.md b/guide/english/css/padding/index.md index ad22c73f61e..9ccfc7cc536 100644 --- a/guide/english/css/padding/index.md +++ b/guide/english/css/padding/index.md @@ -3,9 +3,9 @@ title: Padding --- # Padding -The `padding` CSS property sets the padding area on all four sides of an element. This property can be used to generate space around content (inside the border). It is a shorthand to set all individual paddings at once: `padding-top`, `padding-right`, `padding-bottom`, and `padding-left`. Values are defined in the clockwise direction. +The `padding` CSS property sets the padding area on all four sides of an element. This property can be used to generate space around content (inside the border). It is a shorthand to set all individual paddings at once: `padding-top`, `padding-right`, `padding-bottom`, and `padding-left`. Values are defined in the clockwise direction, starting at the top. -Padding values are set using lengths or percentages or `inherit` keyword, and cannot accept negative values. The initial, or default, value for all padding properties is 0. While you can use `inherit` keyword but it can not be used along with a length value. +Padding values are set using lengths, percentages, or the `inherit` keyword, and cannot accept negative values. The initial, or default, value for all padding properties is 0. The `inherit` keyword cannot be used with a length value. ## Syntax ```css