<!DOCTYPE html>
<html lang="en">
<html>
<head>
<meta charset="utf-8" />
<title>FLEXBOX</title>
<link rel = "stylesheet" href="FLEXBOX.css">
</head>
<body>
<div class = "all">
<div class = "box">0</div>
<div class = "box">1</div>
<div class = "box">2</div>
<div class = "box">3</div>
<div class = "box">4</div>
</div>
</body>
</html>
*{
padding: 0;
margin: 0;
}
.all{
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 30%;
}
.box{
height: 100px;
width: 100px;
background-color: #489b48;
border: 2px solid white;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 50px;
font-weight: bold;
}