- 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 the flex items in the top of the container in CSS
Use the align-items property with value flex-start to align flex items on the top.
You can try to run the following code to implement the flex-start value
Example
<!DOCTYPE html> <html> <head> <style> .mycontainer { display: flex; height: 300px; background-color: red; align-items: flex-start; } .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>Q5</div> </div> </body> </html>
- Related Articles
- Align the flex items in the bottom of the container in CSS
- Align the flex items in the middle of the container in 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
- Usage of CSS align-items property flex-start value
- Usage of CSS align-items property flex-end value
- How to specify the direction of the flexible items inside a flex container with CSS?
- Set the flex items vertically from bottom to top with CSS
- Controlling the Dimensions of Flex Items 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
- Align the grid inside the container using CSS
- Align flex items from everywhere in Bootstrap
- Horizontally align the flex items when the items do not use all available space on the main-axis with CSS

Advertisements