Add punctuation in lines 23, 35, and 83. (#23263)

This commit is contained in:
jaceclowdus
2018-11-17 00:56:37 -05:00
committed by Manish Giri
parent a18309352c
commit 1cbbee0380

View File

@ -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. <offset-x> 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 <length> 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)