freeCodeCamp/curriculum/challenges/german/03-front-end-development-li.../bootstrap/use-responsive-design-with-...

4.9 KiB

id title challengeType forumTopicId dashedName
bad87fee1348bd9acde08712 Verwende responsives Design mit Bootstrap Fluid Container 0 18362 use-responsive-design-with-bootstrap-fluid-containers

--description--

In der HTML5 und CSS-Sektion des freeCodeCamp haben wir eine Katzen-Foto-App gebaut. Lasst uns jetzt dazu zurückkehren. Dieses Mal werden wir sie mit dem beliebten Bootstrap-responsive CSS-Framework gestalten.

Bootstrap ermittelt, wie breit dein Bildschirm ist und reagiert darauf, indem es die Größe deiner HTML-Elemente anpasst - daher der Name responsive design.

Mit responsivem Design ist es nicht nötig, eine mobile Version deiner Website zu entwerfen. Sie sieht auf Geräten mit beliebig breiten Bildschirmen gut aus.

Du kannst Bootstrap zu jeder App hinzufügen, indem du folgenden Code oben in deinem HTML-Code einfügst:

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"/>

In diesem Fall haben wir es bereits auf dieser Seite für dich eingefügt. Beachte, dass die Verwendung von > oder /> zum Schließen des link-Tags möglich ist.

Um zu beginnen, sollten wir unseren HTML-Code (ausgenommen der link-Tag und dasstyle-Element) in einem div-Element mit der Klasse container-fluid verschachteln.

--hints--

Dein div-Element sollte die Klasse container-fluid haben.

assert($('div').hasClass('container-fluid'));

Dein div-Element sollte einen abschließenden Tag haben.

assert(
  code.match(/<\/div>/g) &&
    code.match(/<div/g) &&
    code.match(/<\/div>/g).length === code.match(/<div/g).length
);

Alle HTML-Elemente nach dem abschließenden style-Tag sollten in .container-fluid verschachtelt werden.

assert($('.container-fluid').children().length >= 8 && !$('.container-fluid').has("style").length && !$('.container-fluid').has("link").length);

--seed--

--seed-contents--

<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>

<h2 class="red-text">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>

<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>

--solutions--

<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">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>

<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>