Align text at the bottom inside a div

1

I'm creating a layout and distributing several <div> with the flexbox feature, could someone tell me how I can do the contents of this <div> that will be a word, stay aligned with the center and bottom of this <div> ?

Thank you!

    
asked by anonymous 16.05.2017 / 22:26

1 answer

2

Use the

flex: 1;
align-self: flex-end;

in the content of your div

    
16.05.2017 / 22:41