From b80e7a503d78fc0c379eb9ad7e1f3642d98fc9c4 Mon Sep 17 00:00:00 2001 From: Sai Kiran Date: Tue, 5 Mar 2019 05:26:49 +0530 Subject: [PATCH] corrected text=top to text-top (#27703) --- guide/english/css/vertical-align/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/css/vertical-align/index.md b/guide/english/css/vertical-align/index.md index 2e4ddf7fee..8e857d7bd1 100644 --- a/guide/english/css/vertical-align/index.md +++ b/guide/english/css/vertical-align/index.md @@ -19,7 +19,7 @@ These are the valid values for ```vertical-align```: * ```top``` - This aligns the element so that the top of this element is in align with the top of the tallest element on the line * ```bottom``` - This aligns the element so that the bottom of this element is in align with the bottom of the lowest element on the line * ```middle``` - This aligns the element so that it is in the middle of the parent element -* ```text=top``` - This aligns the top of this element so that it is aligned with the top of the parent element's top +* ```text-top``` - This aligns the top of this element so that it is aligned with the top of the parent element's top * ```text-bottom``` - This aligns the bottom of this element so that it is aligned with the bottom of the parent element's text #### More Information: