Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> .space-around { width: 400px; height: 150px; border: 1px solid #666; display: -webkit-flex; /* Safari */ -webkit-justify-content: space-around; /* Safari 6.1+ */ display: flex; justify-content: space-around; } .space-around div { width: 70px; height: 70px; background-color: #ccc; border: 1px solid #666; } </style> </head> <body> <h2>Beispiel für die Eigenschaft Justify-content</h2> <p>Hier ist "justify-content: space-around" eingestellt:</p> <div class="space-around"> <div>1</div> <div>2</div> <div>3</div> </div> </div> </body> </html>