How do I position an image at the bottom of div?

后端 未结 3 818
粉色の甜心
粉色の甜心 2020-12-05 06:17

I want an html image to be flush with the bottom of a div tag. I can\'t seem to find a way to accomplish this.

Here is my HTML:

3条回答
  •  猫巷女王i
    2020-12-05 07:17

    Using flexbox:

    HTML:

    CSS:

    .wrapper {
        height: 300px;
        width: 300px;
        display: flex;
        align-items: flex-end;
    }
    

    As requested in some comments on another answer, the image can also be horizontally centred with justify-content: center;

提交回复
热议问题