以下为ChatGPT自动生成的解答,正确与否请自行判断。 也许你也可以从大家的发帖中找到想要的答案!
BFE.devAI解答 - CSS 问题
21. Holy Grail Layout
.container { display: flex; flex-direction: column; min-height: 100vh; }
.body { flex-grow: 1; /* This will make body take up remaining space */ }
.left-sidebar, .right-sidebar { width: 100px; /* Set fixed width 100px for both sidebars */ }
.header, .footer { height: 50px; /* Set height for header and footer */ }
.footer { margin-top: auto; /* Set margin-top:auto for footer to make it sticky */ }
/* Optional styles for demonstration purpose */ .header { background-color: #444; color: #fff; }
.left-sidebar { background-color: #efefef; }
.body { background-color: #fff; }
.right-sidebar { background-color: #efefef; }
.footer { background-color: #444; color: #fff; }