index.scss 319 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 :root { background-color: #f2f2f2; //默认背景颜色 height: 100vh; /* 高度为视口高度 */ width: 100vw; /* 宽度为视口宽度 */ position: fixed; /* 固定位置 */ top: 0; /* 顶部对齐 */ left: 0; /* 左侧对齐 */ z-index: -1; /* 置于其他元素下方 */ }