Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <h1>Space between flexbox</h1> <h2>justify-content: space-around </h2> <div class="flex2"> <div class="flex-items">1</div> <div class="flex-items">2</div> <div class="flex-items">3</div> </div> <h2>justify-content: space-between </h2> <div class="flex3"> <div class="flex-items">1</div> <div class="flex-items">2</div> <div class="flex-items">3</div> </div> </body> </html>