Which flex items have the same flex-grow value?
<html> <head> <style> .one { flex-grow: 2; background-color: #ff97a1; } .two { flex-grow: 2; background-color: #ffc86e; } .three { flex-grow: 5; background-color: #bfdaf9; } .container { 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>]]>- Items
1 and 2 - Items
1, 2, and 3 Items 1 and 2.