<!doctype html>
<html>
<head>
<title>CSS Flex Shrink</title>
<style>
.flex-container{
display: flex;
background-color: #4535AA;
}
.flex-item{
flex-shrink: 1;
margin: 3px;
padding: 20px;
background-color: white;
width: 150px;
}
.flex-item shrink{
flex-shrink: 5;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="flex-item shrink">Item 1</div>
<div class="flex-item">Item 2</div>
<div class="flex-item">Item 3</div>
</div>
</body>
</html>