How can I achieve get some element to the very end of the flexbox div?
#wrap {
display: flex;
}
.right {
align-self: flex-end;
}
Here is codepen http://codepen.io/anon/pen/OMEgJO
How can I achieve get some element to the very end of the flexbox div?
#wrap {
display: flex;
}
.right {
align-self: flex-end;
}
Here is codepen http://codepen.io/anon/pen/OMEgJO
.right {
align-self: flex-end;
margin-left: auto;
}
margin-left:auto should do it