diff --git a/guide/english/css/properties/padding-property/index.md b/guide/english/css/properties/padding-property/index.md index 8c74c54f86..6fc35dd95a 100644 --- a/guide/english/css/properties/padding-property/index.md +++ b/guide/english/css/properties/padding-property/index.md @@ -3,12 +3,12 @@ title: Padding Property --- ## Padding Property -CSS `padding` property adds internal space between the content and border of element. You may use `padding-top`, `padding-right`, `padding-bottom` and `padding-left` for a specific side of an element, but `padding` is shorthand version for all these properties. If: +CSS `padding` property adds internal space between the content and border of an element. You may use `padding-top`, `padding-right`, `padding-bottom` and `padding-left` for a specific side of an element, but `padding` is shorthand version for all these properties. If: -* One value is provided it will apply to all sides of element -* Two values are provided, first value will apply top and bottom sides and second value will apply to left and right sides of element. -* Three values are provided, first value will apply to top, second value will apply left and right, third value will apply bottom sides of element. -* Four values are provided, values will apply in the following order: top, right, bottom, left. +* If one value is provided, then it will apply to all sides of an element. +* If two values are provided, then first value will apply to the top and bottom sides and second value will apply to the left and right sides of an element. +* If three values are provided, then first value will apply to the top, second value will apply to the left and right, third value will apply to the bottom sides of an element. +* If four values are provided, then values will apply in the following order: top, right, bottom, left. #### More Information: