You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="vertical-align should have no effect on a flex item, i.e. flex items' content should not be shifted by the vertical-align.">
<style>
.flexbox {
background-color: lightgrey;
}
#item1 {
vertical-align: 10px;
}
#item3 {
vertical-align: 30px;
}
</style>
<div class='flexbox'>
<!-- flex item: block child -->
<div id='item1'>block</div>
<!-- flex item: anonymous block box around inline content -->