197 lines
6.0 KiB
Markdown
197 lines
6.0 KiB
Markdown
---
|
|
id: bad88fee1348ce8acef08815
|
|
title: Usar o Bootstrap Grid para colocar elementos lado a lado
|
|
challengeType: 0
|
|
forumTopicId: 18371
|
|
dashedName: use-the-bootstrap-grid-to-put-elements-side-by-side
|
|
---
|
|
|
|
# --description--
|
|
|
|
Bootstrap usa o sistema responsivo de grid de 12 colunas, o que torna superfácil colocar elementos em linhas e especificar cada largura relativa de um elemento. A maioria das classes do Bootstrap pode ser aplicada a um elemento `div`.
|
|
|
|
O Bootstrap possui atributos de largura de colunas diferentes, que são utilizados dependendo da largura da tela do usuário. Por exemplo, celulares possuem telas estreitas, enquanto laptops possuem telas mais largas.
|
|
|
|
Tome como exemplo a classe `col-md-*` do Bootstrap. Aqui, `md` significa médio, e `*` é um número especificando quantas colunas de largura o elemento deve ter. Nesse caso, a largura da coluna de um elemento em uma tela de tamanho mediano, como um laptop, está sendo especificada.
|
|
|
|
No app de Fotos de Gatos que estamos construindo, utilizaremos `col-xs-*`, onde `xs` significa extrapequeno (como uma tela extrapequena de um telefone móvel), e `*` é um número de colunas especificando quantas colunas de largura o elemento deve ter.
|
|
|
|
Coloque os botões `Like`, `Info` e `Delete` lado a lado ao aninhar todos os três em um elemento `<div class="row">`. Em seguida, coloque cada um deles dentro de um elemento `<div class="col-xs-4">`.
|
|
|
|
A classe `row` é aplicada à `div`. Os próprios botões podem ser aninhados dentro dela.
|
|
|
|
# --hints--
|
|
|
|
Os botões devem estar aninhados dentro do mesmo elemento `div` com a classe `row`.
|
|
|
|
```js
|
|
assert($('div.row:has(button)').length > 0);
|
|
```
|
|
|
|
Cada um dos botões do Bootstrap deve estar aninhado dentro do próprio elemento `div` com a classe `col-xs-4`.
|
|
|
|
```js
|
|
assert($('div.col-xs-4:has(button)').length > 2);
|
|
```
|
|
|
|
Cada um dos elementos `button` deve ter uma tag de fechamento.
|
|
|
|
```js
|
|
assert(
|
|
code.match(/<\/button>/g) &&
|
|
code.match(/<button/g) &&
|
|
code.match(/<\/button>/g).length === code.match(/<button/g).length
|
|
);
|
|
```
|
|
|
|
Cada um dos elementos `div` deve ter uma tag de fechamento.
|
|
|
|
```js
|
|
assert(
|
|
code.match(/<\/div>/g) &&
|
|
code.match(/<div/g) &&
|
|
code.match(/<\/div>/g).length === code.match(/<div/g).length
|
|
);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
|
|
<style>
|
|
.red-text {
|
|
color: red;
|
|
}
|
|
|
|
h2 {
|
|
font-family: Lobster, Monospace;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
font-family: Monospace;
|
|
}
|
|
|
|
.thick-green-border {
|
|
border-color: green;
|
|
border-width: 10px;
|
|
border-style: solid;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.smaller-image {
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
|
|
<div class="container-fluid">
|
|
<h2 class="red-text text-center">CatPhotoApp</h2>
|
|
|
|
<p>Click here for <a href="#">cat photos</a>.</p>
|
|
|
|
<a href="#"><img class="smaller-image thick-green-border" src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
|
|
|
|
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg" class="img-responsive" alt="Three kittens running towards the camera.">
|
|
<button class="btn btn-block btn-primary">Like</button>
|
|
<button class="btn btn-block btn-info">Info</button>
|
|
<button class="btn btn-block btn-danger">Delete</button>
|
|
<p>Things cats love:</p>
|
|
<ul>
|
|
<li>cat nip</li>
|
|
<li>laser pointers</li>
|
|
<li>lasagna</li>
|
|
</ul>
|
|
<p>Top 3 things cats hate:</p>
|
|
<ol>
|
|
<li>flea treatment</li>
|
|
<li>thunder</li>
|
|
<li>other cats</li>
|
|
</ol>
|
|
<form action="https://freecatphotoapp.com/submit-cat-photo">
|
|
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
|
|
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
|
|
<label><input type="checkbox" name="personality"> Loving</label>
|
|
<label><input type="checkbox" name="personality"> Lazy</label>
|
|
<label><input type="checkbox" name="personality"> Crazy</label>
|
|
<input type="text" placeholder="cat photo URL" required>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```html
|
|
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
|
|
<style>
|
|
.red-text {
|
|
color: red;
|
|
}
|
|
|
|
h2 {
|
|
font-family: Lobster, Monospace;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
font-family: Monospace;
|
|
}
|
|
|
|
.thick-green-border {
|
|
border-color: green;
|
|
border-width: 10px;
|
|
border-style: solid;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.smaller-image {
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
|
|
<div class="container-fluid">
|
|
<h2 class="red-text text-center">CatPhotoApp</h2>
|
|
|
|
<p>Click here for <a href="#">cat photos</a>.</p>
|
|
|
|
<a href="#"><img class="smaller-image thick-green-border" src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
|
|
|
|
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg" class="img-responsive" alt="Three kittens running towards the camera.">
|
|
<div class="row">
|
|
<div class="col-xs-4">
|
|
<button class="btn btn-block btn-primary">Like</button>
|
|
</div>
|
|
<div class="col-xs-4">
|
|
<button class="btn btn-block btn-info">Info</button>
|
|
</div>
|
|
<div class="col-xs-4">
|
|
<button class="btn btn-block btn-danger">Delete</button>
|
|
</div>
|
|
</div>
|
|
|
|
<p>Things cats love:</p>
|
|
<ul>
|
|
<li>cat nip</li>
|
|
<li>laser pointers</li>
|
|
<li>lasagna</li>
|
|
</ul>
|
|
<p>Top 3 things cats hate:</p>
|
|
<ol>
|
|
<li>flea treatment</li>
|
|
<li>thunder</li>
|
|
<li>other cats</li>
|
|
</ol>
|
|
<form action="https://freecatphotoapp.com/submit-cat-photo">
|
|
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
|
|
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
|
|
<label><input type="checkbox" name="personality"> Loving</label>
|
|
<label><input type="checkbox" name="personality"> Lazy</label>
|
|
<label><input type="checkbox" name="personality"> Crazy</label>
|
|
<input type="text" placeholder="cat photo URL" required>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
```
|