0

我想做一个看起来像这个代码输出的东西,但不使用mix-blend-mode: multiplycss 的属性,以获得对一些旧版本的现代浏览器的支持。

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>

4

1 回答 1

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;
}
<div class="active">
    WEB
</div>

于 2017-06-05T20:57:01.473 回答