You can use Bootstrap's <code>col-xs-*</code> classes on <code>form</code> 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 <code><div class="row"></code> element. Then nest each of them in a <code><div class="col-xs-4"></code> element.
</section>
## Instructions
<sectionid='instructions'>
</section>
## Tests
<sectionid='tests'>
```yml
- text: Nest all of your checkboxes inside one <code>div</code> with the class <code>row</code>.
testString: 'assert($("div.row:has(input[type=\"checkbox\"])").length > 0, ''Nest all of your checkboxes inside one <code>div</code> with the class <code>row</code>.'');'
testString: 'assert($("div.col-xs-4:has(input[type=\"checkbox\"])").length > 2, ''Nest each of your checkboxes inside its own <code>div</code> with the class <code>col-xs-4</code>.'');'
testString: 'assert(code.match(/<\/div>/g) && code.match(/<div/g)&&code.match(/<\/div>/g).length === code.match(/<div/g).length,''Makesureeachofyour<code>div</code> elements has a closing tag.'');'