Add manual test for align-self

This commit is contained in:
Manish Goregaokar 2020-07-20 14:29:44 -07:00
parent 1cedf40376
commit f2bfa08a85

View file

@ -0,0 +1,41 @@
<style type="text/css">
#box {
display: flex;
align-items: center;
}
#box>div {
background-color: yellow;
margin: 2px;
border: 1px solid black;
}
#a div {
height: 20px;
}
#b div {
height: 50px;
}
#c div,#d div,#e div {
height: 30px;
}
#a {
align-self: stretch;
}
#d {
align-self: flex-end;
}
#e {
align-self: flex-start;
}
</style>
<div id=box>
<div id=a><div>A</div></div>
<div id=b><div>B</div></div>
<div id=c><div>C</div></div>
<div id=d><div>D</div></div>
<div id=e><div>E</div></div>
</div>