Home > Article > Web Front-end > Align Flex items at the beginning of a container using CSS
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
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!