提问人:D.Aktas 提问时间:6/11/2020 更新时间:6/11/2020 访问量:427
此外,定义标准属性“grid-column”以实现兼容性
Also define the standard property 'grid-column' for compatibility
问:
我是 SASS 的新手,我正在尝试在 SASS 中创建一个简单的 for 循环来创建网格类。我的网格中有五个盒子。基本上这就是我试图为每个盒子做的事情:
.box1 {
grid-area: box1;
width: 100%;
img {
width: 100%;
}
}
这是我的 SASS 代码:
$gridBox: 5;
@for $i from 1 through $gridBox {
.box#{$i} {
grid-area: box + $i;
width: 100%;
img {
width: 100%;
}
}
}
我检查了main.css文件,SASS会自动将和添加到box类。因为没有,VS Code 给出了一个错误,并希望我也定义标准属性,但我不想添加它们。我该如何解决这个问题?-ms-grid-row
-ms-grid-column
grid-row
grid-column
答: 暂无答案
评论