Which flex item has the biggest flex-shrink value?

<html> <head> <style> .item { flex-basis: 100px;}.one { flex-shrink: 1; background-color: #ff97a1; } .two { flex-shrink: 1; background-color: #ffc86e; } .three { flex-shrink: 5; background-color: #bfdaf9; } .container { width: 200px; border: solid 1px #d37947; display: flex; } </style> </head> <body> <div class="container"> <div class="item one">1</div> <div class="item two">2</div> <div class="item three">3</div> </div> </body> </html>]]>Flex item 3Flex item 1

Flex item 3.