From 5d30b8777e6080739ce368605b7e426a14d2ec93 Mon Sep 17 00:00:00 2001 From: "Blue\" Jay Matthews" Date: Fri, 15 Mar 2019 13:26:17 -0500 Subject: [PATCH] Explained 300ms value as milliseconds (#26951) Just wanted to help clarify to learners that the 300ms stands for 300 milliseconds. So that they understand the measurement of time being used. --- guide/english/css/transition/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/css/transition/index.md b/guide/english/css/transition/index.md index d9c1876899..476f365500 100644 --- a/guide/english/css/transition/index.md +++ b/guide/english/css/transition/index.md @@ -4,7 +4,7 @@ title: Transition ## Transition -The `transition` property allows you to change property values smoothly (from one value to another), over a given duration. +The `transition` property allows you to change property values smoothly (from one value to another), over a given duration. For example the code below sets the transistion time to 300 milliseconds. ```css transition: all 300ms; ```