- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Display the flex items with space between the lines in CSS
Use the justify-content property with value space-between to add space between the lines.
Example
You can try to run the following code to implement the space-between value −
<!DOCTYPE html> <html> <head> <style> .mycontainer { display: flex; background-color: red; justify-content: space-between; } .mycontainer > div { background-color: white; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } </style> </head> <body> <h1>Quiz</h1> <div class = "mycontainer"> <div>Q1</div> <div>Q2</div> <div>Q3</div> <div>Q4</div> </div> </body> </html>
- Related Articles
- Show the flex lines with equal space between them
- Display the flex lines in the center of the container with CSS
- Display the flex lines in the end of the container with CSS
- Display the flex lines at the start of the container with CSS
- Wrap the flex items with CSS
- Set the flex items vertically with CSS
- Set the flex items horizontally with CSS
- Horizontally align the flex items when the items do not use all available space on the main-axis with CSS
- Align flex lines with CSS
- Wrap the flex items in reverse order with CSS
- Avoid wrapping flex items with CSS
- Show the flex lines with spaces all around with CSS
- Align flex items at the center of the container with CSS
- Align flex items at the beginning of the container with CSS
- Align flex items at the end of the container with CSS

Advertisements