我想做一个应该看起来像这个代码输出的东西,但不使用css的属性mix-blend-mode: multiply
,以获得对某些旧版本的现代浏览器的支持。
CSS的这一功能仍然支持不足,请查看此链接caniuse.com[mix-blend-mode]
.active{
font-size: 80px;
font-family: "DejaVu Sans";
text-align: center;
color: #646e7a;
}
.active::after {
background: #00d7a7 none repeat scroll 0 0;
content: "";
height: 45px;
left: 10%;
margin-top: 0;
mix-blend-mode: multiply;
position: absolute;
right: 10%;
top: 13.8%;
}

<div class="active">
WEB
</div>
&#13;
答案 0 :(得分:0)
这是我找到的一个很好的解决方案:
.active{
background: #00d7a7 none repeat scroll 0 0;
color: rgba(30, 40, 52, 0.73);
font-family: "DejaVu Sans";
font-size: 80px;
height: 45px;
line-height: 0.6;
position: relative;
text-align: center;
top: 20px;
}
&#13;
<div class="active">
WEB
</div>
&#13;