CSS Text Align Bottom of Container

后端 未结 4 954
面向向阳花
面向向阳花 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条回答
  •  悲&欢浪女
    2020-12-14 17:24

    I recently came across a vertically center trick that I was able to adjust to server this purpose: http://codepen.io/Bushwazi/pen/VYBBmL

    parent {
      height: 200px;
    }
    child {
      position: relative;
      top: 100%;
      transform: translateY(-100%);
      display block
    }
    

    ** Need to point out that browser needs to support CSS3 transform: http://caniuse.com/#search=transforms

提交回复
热议问题