| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>This test that we wrap flex content properly with min-width is set.</title> | |
| <style> | |
| .flex { | |
| display: flex; | |
| flex-wrap: wrap; | |
| } | |
| .item { | |
| box-sizing: border-box; | |
| min-width: 500px; | |
| flex-basis: 200px; | |
| height: 100px; | |
| background: green; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="flex"><div class="item"></div><div class="item"></div></div> | |
| </body> | |
| </html> |