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