📌  相关文章
📜  将标题放在 div 的底部 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:18.498000             🧑  作者: Mango

代码示例1
#header {
  position: relative;
  min-height: 150px;
}

#header-content {
  position: absolute;
  bottom: 0;
  left: 0;
}

#header, #header * {
  background: rgba(40, 40, 100, 0.25);
}