diff --git a/guide/english/css/transition/index.md b/guide/english/css/transition/index.md index 30ba203941..d9c1876899 100644 --- a/guide/english/css/transition/index.md +++ b/guide/english/css/transition/index.md @@ -81,9 +81,20 @@ div { ## Syntax +### Transition Delay + +Setting a transition delay determines when the transition will start. + +```css +transition-delay: 1s; +``` + +### Transition Shorthand + ```css transition: property name / duration / timing function / delay ; ``` + #### Example ```css transition: width 2s linear 2s; @@ -91,9 +102,5 @@ transition: width 2s linear 2s; #### More Information: -* MDN Documentation: MDN -* Easings reference: Easings - - - - +* [MDN - transition](https://developer.mozilla.org/en-US/docs/Web/CSS/transition) +* [Easings reference](http://easings.net/en)