--- id: bad87fee1348bd9aeda08845 title: Responsively Style Checkboxes required: - link: 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.css' raw: true challengeType: 0 forumTopicId: 18269 --- ## Description
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
```yml tests: - text: All of your checkboxes should be nested inside one div with the class row. testString: assert($("div.row:has(input[type=\"checkbox\"])").length > 0); - text: Each of your checkboxes should be nested inside its own div with the class col-xs-4. testString: assert($("div.col-xs-4:has(input[type=\"checkbox\"])").length > 2); - text: All of your div elements should have closing tags. testString: assert(code.match(/<\/div>/g) && code.match(/
/g).length === code.match(/
## Challenge Seed
```html

CatPhotoApp

A cute orange cat lying on its back.
Three kittens running towards the camera.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```
## Solution
```html

CatPhotoApp

A cute orange cat lying on its back.
Three kittens running towards the camera.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```