Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/flexbox_align-self-auto.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>flexbox | align-self: auto</title>
<link rel="match" href="flexbox_align-self-auto-ref.html">
<style>
div {
background: blue;
margin: 1em 0;
border: 1px solid black;
height: 6em;
width: 30em;
display: flex;
align-items: flex-end;
}
span {
background: white;
margin: 0 1em;
width: 8em;
display: inline-block;
flex: none;
}
span:nth-child(1) {background: yellow;}
span:nth-child(2) {background: pink;}
span:nth-child(3) {
background: lightblue;
align-self: auto;
}
</style>
<div>
<span>one</span>
<span>two</span>
<span>three</span>
</div>