【发布时间】:2018-04-26 13:07:22
【问题描述】:
我想使用 CSS 网格。我认为是这样的……
html {
height: 100%;
}
body {
min-height: 100%;
display: grid;
grid-template-rows: auto auto [whatever's left of the vh] auto auto;
position: relative;
}
【问题讨论】:
-
如果这是唯一的情况,那么最好使用 Flexbox。
标签: css grid-layout css-grid