I want to do a thing that should look like this code output, but without using the property mix-blend-mode: multiply
of css, in order to get support for some old versions of moderns browsers.
This feature of CSS is still low supporting, look this link 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>