scss 通过在项目上添加分配给它的网格顺序和类来调试SCSS网格布局(如Singularity)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 通过在项目上添加分配给它的网格顺序和类来调试SCSS网格布局(如Singularity)相关的知识,希望对你有一定的参考价值。
.grid-container {
//debugger
counter-reset: grid-item;
[class*="grid-span-"] {
outline: dotted 1px red;
position: relative;
&:hover {
&:before,
&:after {
background: hsla(0,0%,0%,0.0);
font-size: 1px;
}
}
&:before {
content: counter(grid-item);
counter-increment: grid-item;
color: white;
font-size: 40px;
font-weight: bold;
text-align: center;
z-index: 1;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: hsla(0, 0%, 0%, 0.5);
padding-top: 15px;
}
&:after {
content: "class: " attr(class);
position: absolute;
top: 70px;
font-size: 18px;
color: white;
text-align: center;
z-index: 2;
display: block;
width: 100%;
}
}
}
以上是关于scss 通过在项目上添加分配给它的网格顺序和类来调试SCSS网格布局(如Singularity)的主要内容,如果未能解决你的问题,请参考以下文章
是否可以在 hive 中已分区的表上添加分桶?
如何在我的搜索结果页上添加分页?
如何使用 Laravel rest api 在 vue-tables-2 上添加分页?
如何在 UICollectionView 中快速添加分页?
在 Python Bagging Classifier 中将最佳网格搜索超参数分配给最终模型
程序员面试加分最高的几个Javaweb项目,全会了工作是不愁找了