Align flex items at the beginning of the container with CSS


Use the justify-content property with value flex-start to align the flex-items at the beginning.

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;
            background-color: red;
            justify-content: flex-start;
         }
         .mycontainer > div {
            background-color: orange;
            text-align: center;
            line-height: 60px;
            font-size: 30px;
            width: 100px;
            margin: 5px;
         }
      </style>
    </head>
   <body>
      <h1>Result</h1>
      <div class = "mycontainer">
         <div>Rank1</div>
         <div>Rank2</div>
         <div>Rank3</div>
         <div>Rank4</div>
      </div>
   </body>
</html>

Updated on: 25-Jun-2020

87 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements