margin-top: auto does not work inside a element
Hi guys, I have an a tag which wrap some div element and I want to place the last div at the bottom of the a tag. I'm using margin-top: auto but it does not work. How can I handle this problem?
3 Replies
the parent element needs display:flex; or display:grid; for margin-top:auto; to work
I thought margin-top or bottom auto would work ifthe display is not inline. Thank you