diff --git a/client/src/pages/guide/english/css/css3-gradients/index.md b/client/src/pages/guide/english/css/css3-gradients/index.md index 118328b166..60aeee3a85 100644 --- a/client/src/pages/guide/english/css/css3-gradients/index.md +++ b/client/src/pages/guide/english/css/css3-gradients/index.md @@ -20,7 +20,7 @@ To create a linear gradient you must define at least two color stops. Color stop background: linear-gradient(direction, color-stop1, color-stop2, ...); ##### Linear Gradient - Top to Bottom (this is default) -The following example shows a linear gradient that starts at the top. It starts red, transitioning to yellow: +The following example shows a linear gradient that starts at the top. It starts red, transitioning to green:  #### Example @@ -42,7 +42,7 @@ The following example shows a linear gradient that starts at the top. It starts
This linear gradient starts at the top. It starts red, transitioning to yellow:
+This linear gradient starts at the top. It starts red, transitioning to green:
@@ -55,7 +55,7 @@ The following example shows a linear gradient that starts at the top. It starts  ##### Linear Gradient - Left to Right -The following example shows a linear gradient that starts from the left. It starts red, transitioning to yellow: +The following example shows a linear gradient that starts from the left. It starts red, transitioning to green:  #### Example @@ -78,7 +78,7 @@ The following example shows a linear gradient that starts from the left. It starThis linear gradient starts at the left. It starts red, transitioning to yellow:
+This linear gradient starts at the left. It starts red, transitioning to green:
@@ -94,7 +94,7 @@ The following example shows a linear gradient that starts from the left. It star You can make a gradient diagonally by specifying both the horizontal and vertical starting positions. -The following example shows a linear gradient that starts at top left (and goes to bottom right). It starts red, transitioning to yellow: +The following example shows a linear gradient that starts at top left (and goes to bottom right). It starts red, transitioning to green:  @@ -118,7 +118,7 @@ The following example shows a linear gradient that starts at top left (and goesThis linear gradient starts at top left. It starts red, transitioning to yellow:
+This linear gradient starts at top left. It starts red, transitioning to green:
@@ -132,4 +132,6 @@ The following example shows a linear gradient that starts at top left (and goes #### More Information: -[MDN Documentatiion](https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient) || [w3schools](https://www.w3schools.com/css/css3_gradients.asp) \ No newline at end of file +- [MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient) +- [W3Schools](https://www.w3schools.com/css/css3_gradients.asp) +- [CSS Tricks](https://css-tricks.com/snippets/css/css-linear-gradient/)