What does this code display?

Two flex items that won't shrinkTwo flex items that will shrink<html> <head> <style> .one { flex-shrink: 0; background-color: #ff97a1; } .two { flex-shrink: 0; background-color: #ffc86e; } .item { flex-basis: 100px; }.container { border: solid 3px #d37947; display: flex; width: 150px; } </style> </head> <body> <div class="container"> <div class="item one">1</div> <div class="item two">2</div> </div> </body> </html>]]>

Two flex items that won't shrink.