From 1cbbee03809dbb7251564c4b5f625f4b80946721 Mon Sep 17 00:00:00 2001 From: jaceclowdus <44301450+jaceclowdus@users.noreply.github.com> Date: Sat, 17 Nov 2018 00:56:37 -0500 Subject: [PATCH] Add punctuation in lines 23, 35, and 83. (#23263) --- guide/english/css/box-shadow/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/css/box-shadow/index.md b/guide/english/css/box-shadow/index.md index 7f4654466d..5cd63af571 100644 --- a/guide/english/css/box-shadow/index.md +++ b/guide/english/css/box-shadow/index.md @@ -20,7 +20,7 @@ A box shadow can be described with several properties including: ``` * #### inset (default: none) If not specified, the shadow is assumed to be a drop shadow (as if the box were raised above the content). -The presence of the `inset` keyword changes the shadow to one inside the frame +The presence of the `inset` keyword changes the shadow to one inside the frame. * #### offset-x offset-y These are two `length` values to set the shadow offset. specifies the horizontal distance. Negative values place the shadow to the left of the element. `offset-y` specifies the vertical distance. Negative values place the shadow above the element. See `length` for possible units. @@ -32,7 +32,7 @@ This is a third `length` value. The larger this value, the bigger the blur, so t This is a fourth value. Positive values will cause the shadow to expand and grow bigger, negative values will cause the shadow to shrink. If not specified, it will be 0 (the shadow will be the same size as the element). * #### color -This value is used to set the color of the shadow, usually defined with hex `#000000`, rgba value `rgba(55,89,88,0.8)` or rgb value `rgb(55,89,88)` +This value is used to set the color of the shadow, usually defined with hex `#000000`, rgba value `rgba(55,89,88,0.8)` or rgb value `rgb(55,89,88)`. #### Extended @@ -80,7 +80,7 @@ div { box-shadow: inset 10px 10px 5px #ccc; } ``` -It uses very similar code, but with inset value, which displays shadow inside the div element +It uses very similar code, but with inset value, which displays shadow inside the div element. ![image](https://raw.githubusercontent.com/krzysiekh/images/master/box-shadow2.png)