2021-06-15 00:49:18 -07:00
---
id: bad87fee1348bd9aec908845
2021-06-26 21:42:30 +05:30
title: Allineare responsivamente gli elementi dei moduli con Bootstrap
2021-06-15 00:49:18 -07:00
challengeType: 0
forumTopicId: 18225
required:
2021-06-26 21:42:30 +05:30
-
link: >-
2021-06-15 00:49:18 -07:00
https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.css
raw: true
dashedName: line-up-form-elements-responsively-with-bootstrap
---
# --description--
2021-06-26 21:42:30 +05:30
Ora mettiamo il tuo `input` e il `button` di invio del form sulla stessa linea. Lo faremo come in precedenza: usando un elemento `div` di classe `row` , e altri elementi `div` al suo interno usando la classe `col-xs-*` .
2021-06-15 00:49:18 -07:00
2021-06-26 21:42:30 +05:30
Annida sia il l'`input` di testo che il `button` di invio all'interno di un `div` di classe `row` . Annida il tuo `input` di testo all'interno di un div di classe `col-xs-7` . Annida il tuo `button` di invio in un `div` di classe `col-xs-5` .
2021-06-15 00:49:18 -07:00
2021-06-26 21:42:30 +05:30
Questa è l'ultima sfida che faremo per la nostra Cat Photo App per ora. Ci auguriamo che ti sia piaciuto imparare a usare Font Awesome, Bootstrap e il design responsivo!
2021-06-15 00:49:18 -07:00
# --hints--
2021-06-26 21:42:30 +05:30
Il pulsante di invio del modulo e l'input di testo dovrebbero essere annidati in un div di classe `row` .
2021-06-15 00:49:18 -07:00
```js
assert(
$('div.row:has(input[type="text"])').length > 0 & &
$('div.row:has(button[type="submit"])').length > 0
);
```
2021-06-26 21:42:30 +05:30
Il tuo input di testo del modulo dovrebbe essere annidato in un div di classe `col-xs-7` .
2021-06-15 00:49:18 -07:00
```js
assert($('div.col-xs-7:has(input[type="text"])').length > 0);
```
2021-06-26 21:42:30 +05:30
Il pulsante di invio del modulo dovrebbe essere annidato in un div di classe `col-xs-5` .
2021-06-15 00:49:18 -07:00
```js
assert($('div.col-xs-5:has(button[type="submit"])').length > 0);
```
2021-06-26 21:42:30 +05:30
Tutti i tuoi elementi `div` dovrebbero avere dei tag di chiusura.
2021-06-15 00:49:18 -07:00
```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 >
h2 {
font-family: Lobster, Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
< / style >
< div class = "container-fluid" >
< div class = "row" >
< div class = "col-xs-8" >
< h2 class = "text-primary text-center" > CatPhotoApp< / h2 >
< / div >
< div class = "col-xs-4" >
2021-09-22 08:34:59 -07:00
< a href = "#" > < img class = "img-responsive 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 >
2021-06-15 00:49:18 -07:00
< / div >
< / div >
2021-09-22 08:34:59 -07:00
< img src = "https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg" class = "img-responsive" alt = "Three kittens running towards the camera." >
2021-06-15 00:49:18 -07:00
< div class = "row" >
< div class = "col-xs-4" >
< button class = "btn btn-block btn-primary" > < i class = "fa fa-thumbs-up" > < / i > Like< / button >
< / div >
< div class = "col-xs-4" >
< button class = "btn btn-block btn-info" > < i class = "fa fa-info-circle" > < / i > Info< / button >
< / div >
< div class = "col-xs-4" >
< button class = "btn btn-block btn-danger" > < i class = "fa fa-trash" > < / i > Delete< / button >
< / div >
< / div >
< p > Things cats < span class = "text-danger" > love:< / span > < / 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" >
< div class = "row" >
< div class = "col-xs-6" >
< label > < input type = "radio" name = "indoor-outdoor" > Indoor< / label >
< / div >
< div class = "col-xs-6" >
< label > < input type = "radio" name = "indoor-outdoor" > Outdoor< / label >
< / div >
< / div >
< div class = "row" >
< div class = "col-xs-4" >
< label > < input type = "checkbox" name = "personality" > Loving< / label >
< / div >
< div class = "col-xs-4" >
< label > < input type = "checkbox" name = "personality" > Lazy< / label >
< / div >
< div class = "col-xs-4" >
< label > < input type = "checkbox" name = "personality" > Crazy< / label >
< / div >
< / div >
< input type = "text" class = "form-control" placeholder = "cat photo URL" required >
< button type = "submit" class = "btn btn-primary" > < i class = "fa fa-paper-plane" > < / i > Submit< / button >
< / form >
< / div >
```
# --solutions--
```html
< link href = "https://fonts.googleapis.com/css?family=Lobster" rel = "stylesheet" type = "text/css" >
< style >
h2 {
font-family: Lobster, Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
< / style >
< div class = "container-fluid" >
< div class = "row" >
< div class = "col-xs-8" >
< h2 class = "text-primary text-center" > CatPhotoApp< / h2 >
< / div >
< div class = "col-xs-4" >
2021-09-22 08:34:59 -07:00
< a href = "#" > < img class = "img-responsive 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 >
2021-06-15 00:49:18 -07:00
< / div >
< / div >
2021-09-22 08:34:59 -07:00
< img src = "https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg" class = "img-responsive" alt = "Three kittens running towards the camera." >
2021-06-15 00:49:18 -07:00
< div class = "row" >
< div class = "col-xs-4" >
< button class = "btn btn-block btn-primary" > < i class = "fa fa-thumbs-up" > < / i > Like< / button >
< / div >
< div class = "col-xs-4" >
< button class = "btn btn-block btn-info" > < i class = "fa fa-info-circle" > < / i > Info< / button >
< / div >
< div class = "col-xs-4" >
< button class = "btn btn-block btn-danger" > < i class = "fa fa-trash" > < / i > Delete< / button >
< / div >
< / div >
< p > Things cats < span class = "text-danger" > love:< / span > < / 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" >
< div class = "row" >
< div class = "col-xs-6" >
< label > < input type = "radio" name = "indoor-outdoor" > Indoor< / label >
< / div >
< div class = "col-xs-6" >
< label > < input type = "radio" name = "indoor-outdoor" > Outdoor< / label >
< / div >
< / div >
< div class = "row" >
< div class = "col-xs-4" >
< label > < input type = "checkbox" name = "personality" > Loving< / label >
< / div >
< div class = "col-xs-4" >
< label > < input type = "checkbox" name = "personality" > Lazy< / label >
< / div >
< div class = "col-xs-4" >
< label > < input type = "checkbox" name = "personality" > Crazy< / label >
< / div >
< / div >
< div class = "row" >
< div class = "col-xs-7" >
< input type = "text" class = "form-control" placeholder = "cat photo URL" required >
< / div >
< div class = "col-xs-5" >
< button type = "submit" class = "btn btn-primary" > < i class = "fa fa-paper-plane" > < / i > Submit< / button >
< / div >
< / div >
< / form >
< / div >
```