首页htmlbottomCSS Layout - 如何垂直对齐到底部

CSS Layout - 如何垂直对齐到底部

我们想知道如何垂直对齐到底部。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#container {
  height: 300px;
  border: 1px solid;
  padding: 5px;
  display: table-cell;
  vertical-align: bottom;
}

.message {
  border: 1px solid;
  margin-top: 5px;
}
</style>
</head>
<body>
  <p>Top of page</p>
  <div id="container">
    <div class="message">Message 4</div>
    <div class="message">Message 3</div>
    <div class="message">Message 2</div>
    <div class="message">Message 1</div>
  </div>
  <p>Bottom of page</p>
</body>
</html>