Auto


Codice
<style>
.container {
display: flex;
height: 200px;
background-color: #f0f0f0;
align-items: center; /* default per gli altri */
}
.item {
width: 100px;
height: 50px;
background-color: lightcoral;
}
.auto {
align-self: auto; /* segue l'align-items del contenitore */
}
</style>
</head>
<body>

<div class="container">
<div class="item auto">Auto</div>
</div>