Beispiel:CSS-Flexbox-10.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" media="screen" href="./Beispiel:SELFHTML-Beispiel-Grundlayout.css">
  <title>Flexbox 10</title>
  <style>

.flex-container {
  display: flex;
  border: 2px dotted;
  margin-bottom: 1em;
}

.vorne  {
  justify-content: flex-start;
}
 
.mittig {
  justify-content: center;
}
 
.verteilt1 {
  justify-content: space-between;
}

.verteilt2 {
  justify-content: space-around;
}

.flex-item {
	border: 1px solid;
	border-radius: 0 .5em .5em;
	margin: .5em;
	padding: .5em;
	background: #ffebe6;
}

p.flex-item {
	font-weight: bold;
	text-align: center;
}

.flex-item:nth-of-type(2) {
	background: #fdfcf3;	
}

.flex-item:nth-of-type(3) {
	background: #ebf5d7;
}

.flex-item:nth-of-type(4) {
	background: #e6f2f7;
}

.flex-item:nth-of-type(5) {
	background: hsla(277, 53%, 73%,0.3) ;
}
</style>
</head>
<body>
  <h1>Flexbox 10 - <code>justify-content</code></h1>
<main>  
	<p>Durch die Eigenschaft justify-content kann die Anordnung der flexiblen Elemente entlang der Hauptachse festgelegt werden.</p>
  <div class="flex-container vorne">
    <p class="flex-item">1</p>
    <p class="flex-item">2</p>
    <p class="flex-item">3</p>  
    <p class="flex-item">4</p>   
    <p class="flex-item">5</p>             
  </div>
  
  <div class="flex-container mittig">
    <p class="flex-item">1</p>
    <p class="flex-item">2</p>
    <p class="flex-item">3</p>  
    <p class="flex-item">4</p>   
    <p class="flex-item">5</p>             
  </div>

  <div class="flex-container verteilt1">
    <p class="flex-item">1</p>
    <p class="flex-item">2</p>
    <p class="flex-item">3</p>  
    <p class="flex-item">4</p>   
    <p class="flex-item">5</p>             
  </div>
  <div class="flex-container verteilt2">
    <p class="flex-item">1</p>
    <p class="flex-item">2</p>
    <p class="flex-item">3</p>  
    <p class="flex-item">4</p>   
    <p class="flex-item">5</p>             
  </div>    

</main>
</body>
</html>