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

Live Demo

<!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>

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 25-Jun-2020

836 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements