21. Holy Grail Layout

  -通过 / -执行

Implement Holy Grail Layout which includes header, left sidebar, body, right sidebar and footer.

  1. it should be sticky footer
  2. left sidebar and right sidebar should be fixed width of 100px.
  3. styles of color .etc are already set for you, only layout related CSS code is needed.
<div class="container">
  <header class="header">header</header>
  <div class="left-sidebar">left sidebar</div>
  <div class="body">body</div>
  <div class="right-sidebar">right sidebar</div>
  <footer class="footer">footer</footer>
</div>

1.内容长度不够时,footer贴在底部

2.其他的情况正常显示

3.甚至于footer不会显示在viewport中

(19)