Home  >  Article  >  Web Front-end  >  Align Flex items at the beginning of a container using CSS

Align Flex items at the beginning of a container using CSS

PHPz
PHPzforward
2023-09-11 18:29:02612browse

使用 CSS 将容器开头的 Flex 项目对齐

Align flex items at the beginning using the justify-content property with the value flex-start.

You can try running the following code to implement the flex-start value

Example

Live demonstration

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

The above is the detailed content of Align Flex items at the beginning of a container using CSS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete