首页 > 解决方案 > 我可以在 CSS Grid 中用作主网格容器吗?

问题描述

除了将所有内容都包装在 a 中之外<div>,我可以只将 of 设置display<body>togrid吗?

<style>
    .grid-container {
        display: grid;
        // Other grid stuff
    }
</style>
…
<body>
    <div class="grid-container">
        <div class="header"></div>
        <div class="other"></div>
    </div>
</body>

对比

<style>
    body {
        display: grid;
        // Other grid stuff
    }
</style>
…
<body>
    <div class="header"></div>
    <div class="other"></div>
</body>

标签: htmlcsscss-grid

解决方案


推荐阅读