From f0798189c97aea595b91042b30dfc6b57cfbacf3 Mon Sep 17 00:00:00 2001 From: Nicki Hastings Date: Tue, 8 Jan 2019 00:40:25 +0100 Subject: [PATCH] Fix typos (#33833) * Fix: Typos in text * minor change --- guide/english/css/breakpoints/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/css/breakpoints/index.md b/guide/english/css/breakpoints/index.md index 2533fdd350..2fafb0e3a0 100644 --- a/guide/english/css/breakpoints/index.md +++ b/guide/english/css/breakpoints/index.md @@ -93,7 +93,7 @@ and (orientation: landscape) { ### Breakpoints based on Content -This is the most preferred choice while making or writing the breakpoint rules. Because it is easier to adjust your content according a particular layout only when it requires a change. +This is the most preferred choice while making or writing the breakpoint rules. Because it is easier to adjust your content according to a particular layout only when it requires a change. ``` @media only screen (min-width: 768px){ ... @@ -102,7 +102,7 @@ This is the most preferred choice while making or writing the breakpoint rules. > This breakpoint means the CSS will apply when the device width is 768px and above. -#### You can also set a range with breakpoints, so the CSS will only apply within those limits. +#### You can also set a range with breakpoints, so the CSS will only apply within those limits. ``` @media only screen and (min-width: 768px) and (max-width: 959px){