From 93c8badfebe508e3426c5e93abe506b9fb7106a1 Mon Sep 17 00:00:00 2001 From: kevindelsh <44755032+kevindelsh@users.noreply.github.com> Date: Sun, 17 Feb 2019 11:13:47 -0800 Subject: [PATCH] Minor rephrasing of the lesson's description (#34787) * Minor rephrasing of the lesson's description Since we already said in the last lesson that bootstraps col-xs-* classes can be used on all form elements it sounds silly to repeat the exact same phrase in this lesson too. * Corrections to conform to style guide 1- Changed use of passive voice to active voice. 2- Changed use of first person to second person. * Moved challenge instruction to Instructions section --- .../bootstrap/responsively-style-checkboxes.english.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/bootstrap/responsively-style-checkboxes.english.md b/curriculum/challenges/english/03-front-end-libraries/bootstrap/responsively-style-checkboxes.english.md index 88bc90391b..67abc36d79 100644 --- a/curriculum/challenges/english/03-front-end-libraries/bootstrap/responsively-style-checkboxes.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/bootstrap/responsively-style-checkboxes.english.md @@ -9,13 +9,12 @@ challengeType: 0 ## Description
-You can use Bootstrap's col-xs-* classes on form elements, too! This way, our checkboxes will be evenly spread out across the page, regardless of how wide the screen resolution is. -Nest all three of your checkboxes in a <div class="row"> element. Then nest each of them in a <div class="col-xs-4"> element. + Since Bootstrap's col-xs-* classes are applicable to all form elements, you can use them on your checkboxes too! This way, the checkboxes will be evenly spread out across the page, regardless of how wide the screen resolution is.
## Instructions
- +Nest all three of your checkboxes in a <div class="row"> element. Then nest each of them in a <div class="col-xs-4"> element.
## Tests