What will this code display?

The numbers 4, 3, 2, 1 in a columnThe numbers 1, 2, 3, 4 in a row

The numbers 4, 3, 2, 1 in a column.

<html> <head> <style>.container { border: solid 2px #806868; display: flex; flex-direction: column-reverse; height: 300px; } .item { border: 2px solid #457081; margin: 10px; }</style> </head> <body> <div class="container"> <div class="item">1</div> <div class="item">2</div> <div class="item">3</div> <div class="item">4</div> </div> </body> </html> ]]>