What main axis does this code have?
<html> <head> <style> .container { display: flex; width: auto; background-color: #edc9b5; flex-direction: row; } .item { background-color: #ffeccd; margin: 10px; padding: 5px; text-align: center; } </style> </head> <body> <div class="container"> <div class="item">Home</div> <div class="item">About</div> <div class="item">Contact</div> </div> </body> </html> ]]>- A horizontal one, from left to right
- A vertical one, from top to bottom
A horizontal one, from left to right.