How to align content of a div to the bottom

后端 未结 26 2531
挽巷
挽巷 2020-11-22 01:13

Say I have the following CSS and HTML code:

26条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 01:54

    You can simply achieved flex

    header {
      border: 1px solid blue;
      height: 150px;
      display: flex;                   /* defines flexbox */
      flex-direction: column;          /* top to bottom */
      justify-content: space-between;  /* first item at start, last at end */
    }
    h1 {
      margin: 0;
    }

    Header title

    Some text aligns to the bottom

提交回复
热议问题