CSS Text Align Bottom of Container

后端 未结 4 957
面向向阳花
面向向阳花 2020-12-14 16:28

I have a header which has a large image floated on one side, and a small paragraph of text on the other side. I want the paragraph to start at the bottom of the header div.

4条回答
  •  猫巷女王i
    2020-12-14 17:11

    http://jsfiddle.net/danheberden/ymwPe/

    Hi there!

    I'm on the bottom!

    css:

    #container {
        background: #EEE;
        height:400px;
        width:400px;
        position:relative;
    }
    #gonnaBeOnTheBottom {
        position:absolute;
        bottom:0;
    }
    

    by setting position:relative on the parent container, you can absolute position elements inside of it :)

提交回复
热议问题