- 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
Align flex lines with CSS
Use the align-content property to align the flex lines. You can try to run the following code to implement the align-content property:
Example
<!DOCTYPE html> <html> <head> <style> .mycontainer { display: flex; background-color: RED; align-content: space-between; height: 150px; width: 600px; flex-wrap: wrap; } .mycontainer > div { background-color: white; text-align: center; line-height: 40px; font-size: 25px; 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>Q5</div> <div>Q6</div> </div> </body> </html>
- Related Articles
- Show the flex lines with spaces all around with CSS
- Align flex items at the beginning of the container with CSS
- Align flex items at the end of the container with CSS
- Align flex items at the center of the container with CSS
- How to Align Column DIVs as Left-Center-Right with CSS Flex
- Usage of CSS align-content property flex-start value
- Usage of CSS align-content property flex-end value
- Usage of CSS align-items property flex-start value
- Usage of CSS align-items property flex-end value
- Display the flex items with space between the lines in CSS
- 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
- Align the flex items in the bottom of the container in CSS
- Align the flex items in the middle of the container in CSS

Advertisements