Holy Grail Layout
2022年5月1日小于 1 分钟
Holy Grail Layout
Question
Implement Holy Grail Layout which includes header, left sidebar, body, right sidebar and footer.
- it should be sticky footer
- left sidebar and right sidebar should be fixed width of 100px.
- 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>