当我想为其中一个容器添加背景颜色时,使用alpha透明度为“0.5”的rgba(r,g,b,a)或者其他任何东西,罗盘在最后将其变为“0” 。
萨斯:
.main-content{
background: rgba(255,255,255,0.5);
}
输出:
.main-content{
background: rgba(255,255,255,0);
}
答案 0 :(得分:2)
这是一个错误,很快就会修复,同时尝试使用此解决方法:
background: rgba(255,255,255,1/2);
答案 1 :(得分:-1)
这对它有帮助吗?添加!important
将取代其他样式表中的任何其他样式。
//SCSS in my _main-content.scss
.main-content{
background: rgba(255,255,255,0.5) !important;
}