Check out this cool CSS text effect I created:
.inset-text
{
background-color: #666666;
-moz-background-clip: text;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: rgba(255,255,255,0.5) 0 3px 3px;
}
<p class="inset-text">Some Text</p>
Unfortunately, when testing this example in Firefox, it displays a gray rectangle instead of the desired effect. However, everything works perfectly in Chrome. How can I go about fixing this issue?