I tried to align my text to the bottom of a div from other posts and answers in Stack Overflow I learned to handle this with different CSS properties. But I can\'t get it do
You now can do this with Flexbox justify-content: flex-end now:
justify-content: flex-end
div { display: flex; justify-content: flex-end; align-items: flex-end; width: 150px; height: 150px; border: solid 1px red; }
Something to align
Consult your Caniuse to see if Flexbox is right for you.