<html>
<head>
<style>
.box {
width: 250px;
height: 200px;
border: 1px solid #212b36;
display: flex;
}
.box div {
grow: 0;
flex-shrink: 0;
flex-basis: 50px;
}
.box div:nth-of-type(2) {
flex-basis: 100px;
}
</style>
</head>
<body>
<h1>The flex-basis Property</h1>
<div class="box">
<div style="background-color:#00ab55;"></div>
<div style="background-color:#ff4842;"></div>
<div style="background-color:#ffc107;"></div>
<div style="background-color:#1890ff;"></div>
</div>
</body>
</html>